mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
added rule for font source generation
This commit is contained in:
23
Source/Fonts/Makefile
Normal file
23
Source/Fonts/Makefile
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
Reference in New Issue
Block a user