#
# @(#)makefile        1.1
#
CFLAGS	= -O -Wall
OBJS	= asm.o as81.o as82.o as83.o as85.o

asm80:	$(OBJS)
	cc $(CFLAGS) $(OBJS) -o asm80

asm.o:	asm.h
as81.o: asm.h
as82.o:	asm.h
as83.o:	asm.h
as85.o:	asm.h

clean:
	@rm -f $(OBJS)

clobber:	clean
	@rm -f asm80

test:
	@./test.sh

tar:
	tar czf asm80-`date '+%Y-%m-%d'`.tar.gz `cat MANIFEST`
