diff options
Diffstat (limited to 'res/fonts/Makefile')
-rw-r--r-- | res/fonts/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/res/fonts/Makefile b/res/fonts/Makefile new file mode 100644 index 0000000..e1daf03 --- /dev/null +++ b/res/fonts/Makefile @@ -0,0 +1,7 @@ +%.bf: %.c + gcc -o $<.bin $< + ./$<.bin > $@ + rm $<.bin + +all: default.bf + |