all: heat burger

heat: heat.c fft.o tictoc.o
	gcc -std=gnu99 -o heat heat.c fft.o tictoc.o -lm

burger: burger.c fft.o tictoc.o
	gcc -std=gnu99 -o burger burger.c fft.o tictoc.o -lm

fft.o: fft.c fft.h
	gcc -std=gnu99 -c fft.c

tictoc.o: tictoc.c tictoc.h
	gcc -std=gnu99 -c tictoc.c
