Fix makefile for font tools

This commit is contained in:
Simon Robertshaw 2011-08-08 10:23:21 +01:00
parent fdf4ee7c95
commit fd1a05943f

View File

@ -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