aboutsummaryrefslogtreecommitdiff
path: root/res/fonts/Makefile
diff options
context:
space:
mode:
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