#
# @(#)makefile        1.1
#
include stdtools
include stdrules

CFLAGS	= -c -O -C90 -throwback
OBJS	= asm.o as81.o as82.o as83.o as85.o

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

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

clean:
      create o.foo 0
      wipe o.* ~C

cleanall: clean
          wipe asm80 ~C
        
zip: clean
        up
        zip -r9 asm80/zip asm80 -x asm80./git.*
        dir asm80
        
      