The-Powder-Toy/font/Makefile

21 lines
773 B
Makefile
Raw Normal View History

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
2012-01-31 06:35:18 -06:00
editor.exe: editor.c
gcc -oeditor.exe -DSCALE=2 -DFONTEDITOR editor.c -lmingw32 -lm -lSDLmain -lSDL -O3 -ffast-math -march=k8 -Wall -std=c99 -mwindows
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
2012-01-31 06:35:18 -06:00
packer.exe: packer.c
gcc -opacker.exe -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
2012-01-31 06:35:18 -06:00
unpacker.exe: unpacker.c
gcc -ounpacker.exe -DFONTEDITOR unpacker.c -lm -O3 -ffast-math -march=k8 -Wall -std=c99
2011-05-26 05:40:08 -05:00
clean:
2012-01-31 06:35:18 -06:00
rm -f editor packer unpacker editor.exe packer.exe unpacker.exe