mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-04-20 22:51:51 +02:00
12 lines
360 B
Makefile
12 lines
360 B
Makefile
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 packer.c -lm -O3 -ffast-math -march=k8 -Wall -std=c99
|
|
|
|
unpacker: unpacker.c
|
|
gcc -ounpacker -DFONTEDITOR unpacker.c -lm -O3 -ffast-math -march=k8 -Wall -std=c99
|
|
|
|
clean:
|
|
rm -f editor packer unpacker
|