sound: main.exe
	./main.exe > test.raw
	sox -r 31250 -e signed -b 8 -c 1 test.raw test.wav

main.exe: main.c
	gcc -g main.c -o main.exe -lm

