diff options
author | Alex Auvolat <alex@adnab.me> | 2015-03-11 14:35:54 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2015-03-11 14:35:54 +0100 |
commit | 5e9251bd48acafff575ed1c740e4dc05ec175508 (patch) | |
tree | 00f95aafd4e0399bcb1858f24b7e79b06a216f30 /res/fonts/Makefile | |
parent | 052ca1dc143b1df2800f9c4e43daf80c96fb472e (diff) | |
download | kogata-5e9251bd48acafff575ed1c740e4dc05ec175508.tar.gz kogata-5e9251bd48acafff575ed1c740e4dc05ec175508.zip |
Add simple drawing code & font loading.
Diffstat (limited to 'res/fonts/Makefile')
-rw-r--r-- | res/fonts/Makefile | 5 |
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 |