aboutsummaryrefslogtreecommitdiff
path: root/res/fonts
diff options
context:
space:
mode:
Diffstat (limited to 'res/fonts')
-rw-r--r--res/fonts/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/res/fonts/Makefile b/res/fonts/Makefile
index 8b50213..9a2a6b3 100644
--- a/res/fonts/Makefile
+++ b/res/fonts/Makefile
@@ -3,6 +3,8 @@ CFLAGS=-I../../src/lib/include -std=c11
AS=nasm
ASFLAGS=-fbin
+all: pcvga.bf muazzam.bf
+
%.bf: %.c
$(CC) $(CFLAGS) -o $<.bin $<
./$<.bin > $@
@@ -11,8 +13,7 @@ ASFLAGS=-fbin
%.bf: %.s
$(AS) $(ASFLAGS) -o $@ $<
-all: pcvga.bf muazzam.bf
-
clean:
rm *.bf || exit 0
+rebuild: clean all