aboutsummaryrefslogtreecommitdiff
path: root/res/fonts/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'res/fonts/Makefile')
-rw-r--r--res/fonts/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/res/fonts/Makefile b/res/fonts/Makefile
index e1daf03..c4de63d 100644
--- a/res/fonts/Makefile
+++ b/res/fonts/Makefile
@@ -1,5 +1,8 @@
+CC=gcc
+CFLAGS=-I../../src/lib/include -std=c11
+
%.bf: %.c
- gcc -o $<.bin $<
+ $(CC) $(CFLAGS) -o $<.bin $<
./$<.bin > $@
rm $<.bin