diff options
author | Alex Auvolat <alex@adnab.me> | 2017-05-04 11:48:08 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2017-05-04 11:48:08 +0200 |
commit | 9bb1c5371affb2ff0b83256470dec7461b404264 (patch) | |
tree | 9db7cd56713864a07f047572bfa2d55a5a9933dd /res/fonts/Makefile | |
parent | 1161e1d8be014945266017cb0ce735537a287677 (diff) | |
download | kogata-9bb1c5371affb2ff0b83256470dec7461b404264.tar.gz kogata-9bb1c5371affb2ff0b83256470dec7461b404264.zip |
Beginning of tk.lua
Diffstat (limited to 'res/fonts/Makefile')
-rw-r--r-- | res/fonts/Makefile | 19 |
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 |