diff options
author | Alex Auvolat <alex@adnab.me> | 2015-03-11 13:08:23 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2015-03-11 13:08:23 +0100 |
commit | 052ca1dc143b1df2800f9c4e43daf80c96fb472e (patch) | |
tree | 942afa77e09d1e6d0b932cd8866fdf4a1f52f724 /res/fonts/Makefile | |
parent | 35c1120a6069414dd279b988eb772f4eec0966f7 (diff) | |
download | kogata-052ca1dc143b1df2800f9c4e43daf80c96fb472e.tar.gz kogata-052ca1dc143b1df2800f9c4e43daf80c96fb472e.zip |
Refactor ; add default font (8x16 standard VGA font).
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 + |