head	1.2;
access;
symbols
	V1_6_7:1.2
	V1_6_6:1.2
	V1_6_5:1.2
	V1_6_4:1.2
	V1_6_3:1.2;
locks; strict;
comment	@# @;


1.2
date	2000.05.19.09.47.41;	author vandys;	state Exp;
branches;
next	1.1;

1.1
date	2000.05.03.12.05.13;	author vandys;	state Exp;
branches;
next	;


desc
@Makefile
@


1.2
log
@Build library here by default
@
text
@include ../../../Configfile

.s.o:
	$(CPP) $*.s $*.xx
	$(AS) -o $*.o $*.xx
	rm -f $*.xx

CFLAGS=		-g $(FLAGS)

AOBJS=		do_blit.o do_mask.o do_2blit.o do_2mask.o misc.o
COBJS=		bit_blit.o bit_destroy.o bit_line.o \
		bit_on.o bit_open.o bit_point.o bit_size.o fast_scroll.o $(SCREEN).o
OBJS=		$(AOBJS) $(COBJS)

all: libbitbl.a

install:	all

clean:
		rm -f $(OBJS)

clobber:	clean

libbitbl.a:	$(OBJS)
	rm -f libbitblit.a
	ar -crsv libbitblit.a $(OBJS) ../bitmap/*.o ../movie/*.o
@


1.1
log
@Initial revision
@
text
@d8 1
a8 1
CFLAGS=		$(FLAGS)
d15 1
a15 1
all:		$(OBJS)
d23 4
@
