2011-05-26 05:40:08 -05:00
|
|
|
editor: editor.c
|
2011-06-22 13:22:48 -05:00
|
|
|
gcc -oeditor -DSCALE=2 -DFONTEDITOR editor.c -lSDL -lm -O3 -ffast-math -march=k8 -Wall -std=c99
|
2011-08-08 04:16:31 -05:00
|
|
|
|
|
|
|
packer: packer.c
|
2011-08-08 04:23:21 -05:00
|
|
|
gcc -opacker -DFONTEDITOR packer.c -lm -O3 -ffast-math -march=k8 -Wall -std=c99
|
2011-08-08 04:16:31 -05:00
|
|
|
|
|
|
|
unpacker: unpacker.c
|
2011-08-08 04:23:21 -05:00
|
|
|
gcc -ounpacker -DFONTEDITOR unpacker.c -lm -O3 -ffast-math -march=k8 -Wall -std=c99
|
2011-05-26 05:40:08 -05:00
|
|
|
|
|
|
|
clean:
|
2011-08-08 04:23:21 -05:00
|
|
|
rm -f editor packer unpacker
|