summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2011-08-08 09:23:21 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2011-08-08 09:23:21 (GMT)
commitfd1a05943fbfbc678ed55c7fa83f2eac3881eba1 (patch)
treeaaf3e52d67e077138b02b613d5fb7d4fa9096cf2
parentfdf4ee7c95099effa4c52319b0a2ab6af547574c (diff)
downloadpowder-fd1a05943fbfbc678ed55c7fa83f2eac3881eba1.zip
powder-fd1a05943fbfbc678ed55c7fa83f2eac3881eba1.tar.gz
Fix makefile for font tools
-rw-r--r--font/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/font/Makefile b/font/Makefile
index 70f1ff8..606d53b 100644
--- a/font/Makefile
+++ b/font/Makefile
@@ -2,10 +2,10 @@ editor: editor.c
gcc -oeditor -DSCALE=2 -DFONTEDITOR editor.c -lSDL -lm -O3 -ffast-math -march=k8 -Wall -std=c99
packer: packer.c
- gcc -opacker -DFONTEDITOR editor.c -lSDL -lm -O3 -ffast-math -march=k8 -Wall -std=c99
+ gcc -opacker -DFONTEDITOR packer.c -lm -O3 -ffast-math -march=k8 -Wall -std=c99
unpacker: unpacker.c
- gcc -ounpacker -DFONTEDITOR editor.c -lSDL -lm -O3 -ffast-math -march=k8 -Wall -std=c99
+ gcc -ounpacker -DFONTEDITOR unpacker.c -lm -O3 -ffast-math -march=k8 -Wall -std=c99
clean:
- rm -f editor packer
+ rm -f editor packer unpacker