diff options
Diffstat (limited to 'res/fonts/Makefile')
-rw-r--r-- | res/fonts/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/res/fonts/Makefile b/res/fonts/Makefile index c4de63d..8b50213 100644 --- a/res/fonts/Makefile +++ b/res/fonts/Makefile @@ -1,10 +1,18 @@ CC=gcc CFLAGS=-I../../src/lib/include -std=c11 +AS=nasm +ASFLAGS=-fbin %.bf: %.c $(CC) $(CFLAGS) -o $<.bin $< ./$<.bin > $@ rm $<.bin -all: default.bf +%.bf: %.s + $(AS) $(ASFLAGS) -o $@ $< + +all: pcvga.bf muazzam.bf + +clean: + rm *.bf || exit 0 |