You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
389 B

OBJECTS = \
font8x8u.asm font8x11u.asm font8x16u.asm \
font8x8c.asm font8x11c.asm font8x16c.asm
DEST = ../HBIOS
TOOLS = ../../Tools
OTHERS = *.rel
include $(TOOLS)/Makefile.inc
#
# these 2 rules cancel out the default rules from the Makefile.inc
#
%.rel: %.asm
%.bin: %.asm
%.asm: %.bin
$(BINDIR)/bin2asm $< > $@
clobber::
for i in $(OBJECTS) ; do \
rm -f $(DEST)/$$i ; \
done