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.
 
 
 
 
 
 

27 lines
515 B

OBJECTS = \
font8x8u.asm font8x11u.asm font8x16u.asm \
font8x8c.asm font8x11c.asm font8x16c.asm
OTHERS = font8x8c.bin font8x11c.bin font8x16c.bin
TOOLS = ../../Tools
include $(TOOLS)/Makefile.inc
#
# these 2 rules cancel out the default rules from the Makefile.inc
#
%.rel: %.asm
%.bin: %.asm
font8x8c.bin: font8x8u.bin
$(BINDIR)/lzsa -f2 -r $< $@
font8x11c.bin: font8x11u.bin
$(BINDIR)/lzsa -f2 -r $< $@
font8x16c.bin: font8x16u.bin
$(BINDIR)/lzsa -f2 -r $< $@
%.asm: %.bin
$(BINDIR)/bin2asm $< > $@