summaryrefslogtreecommitdiff
path: root/font/Makefile
blob: 70f1ff80931982160eb5986bb1f927ac9521c252 (plain)
1
2
3
4
5
6
7
8
9
10
11
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
	
unpacker: unpacker.c
	gcc -ounpacker -DFONTEDITOR editor.c -lSDL -lm -O3 -ffast-math -march=k8 -Wall -std=c99

clean:
	rm -f editor packer