aboutsummaryrefslogtreecommitdiff
path: root/res/fonts/Makefile
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2017-05-04 11:48:08 +0200
committerAlex Auvolat <alex@adnab.me>2017-05-04 11:48:08 +0200
commit9bb1c5371affb2ff0b83256470dec7461b404264 (patch)
tree9db7cd56713864a07f047572bfa2d55a5a9933dd /res/fonts/Makefile
parent1161e1d8be014945266017cb0ce735537a287677 (diff)
downloadkogata-9bb1c5371affb2ff0b83256470dec7461b404264.tar.gz
kogata-9bb1c5371affb2ff0b83256470dec7461b404264.zip
Beginning of tk.lua
Diffstat (limited to 'res/fonts/Makefile')
-rw-r--r--res/fonts/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/res/fonts/Makefile b/res/fonts/Makefile
deleted file mode 100644
index 758bbcf..0000000
--- a/res/fonts/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-CC=gcc
-CFLAGS=-I../../src/lib/include/proto -std=c11
-AS=nasm
-ASFLAGS=-fbin
-
-all: pcvga.bf muazzam.bf
-
-%.bf: %.c
- $(CC) $(CFLAGS) -o $<.bin $<
- ./$<.bin > $@
- rm $<.bin
-
-%.bf: %.s
- $(AS) $(ASFLAGS) -o $@ $<
-
-clean:
- rm *.bf || exit 0
-
-rebuild: clean all