INCLPATH = .
CFLAGS = -O2 -funroll-loops -I$(INCLPATH) 

rasta_plp: rasta_plp.o fft.o
	gcc $(CFLAGS) -o rasta_plp rasta_plp.o fft.o -lm   

rasta_plp.o: rasta_plp.c
	gcc $(CFLAGS) -c rasta_plp.c

fft.o: fft.c
	gcc $(CFLAGS) -c fft.c

