##############################################################################
## subMakefile for dasm1600
##############################################################################

DASMSRC = dasm/dasm1600.c dasm/dasm1600o.c
DASMOBJ = dasm/dasm1600.o dasm/dasm1600o.o


$(B)/dasm1600$(X): dasm/dasm1600.o
	$(CC) -o $(B)/dasm1600$(X) $(CFLAGS) dasm/dasm1600.o

$(B)/dasm1600o$(X): dasm/dasm1600o.o
	$(CC) -o $(B)/dasm1600o$(X) $(CFLAGS) dasm/dasm1600o.o

TOCLEAN += $(B)/dasm1600o$(X) $(B)/dasm1600$(X) $(DASMOBJ) 
PROGS   += $(B)/dasm1600o$(X) $(B)/dasm1600$(X)
