all:
	musl-gcc -Q -O3 -static-pie -fPIE -fstack-protector-strong -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-z,now -o fvoxel -lm fvoxel.c
	strip fvoxel
clean:
	rm -f fvoxel
	rm -f *.txt
start:
	./start.sh
