summaryrefslogtreecommitdiff
path: root/userspace/fonts/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'userspace/fonts/Makefile')
-rw-r--r--userspace/fonts/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/userspace/fonts/Makefile b/userspace/fonts/Makefile
index a203753..31dfb20 100644
--- a/userspace/fonts/Makefile
+++ b/userspace/fonts/Makefile
@@ -1,5 +1,15 @@
############ fool-font ############
-binfont.bin: binfont.src
+
+# how to binarize foolfont sources to foolfont binaries
+%.bin: %.src
python3 binarize.py $< $@
+
+FONT_SRC=$(wildcard ./*.src)
+FONT_BIN=$(patsubst %.src, %.bin, $(FONT_SRC))
+
+all:
+
clean:
-rm binfont.bin
+ -rm binfont_v2.bin
+ -rm tinyfont.bin