CFLAGS=-O6 -funroll-loops -fomit-frame-pointer -Ifft

SRCS=myfft.cc main.cc gus.cc tune.cc Note.cc

OBJS=myfft.o main.o gus.o tune.o Note.o

tune: $(OBJS)
	rm -f tune
	g++ -o tune $(CFLAGS) $(OBJS) fft/libla.a -lm
	strip tune

clean:
	rm -f tune $(OBJS)

%.o: %.cc
	g++ -c $(CFLAGS) $<

depend:
	makedepend -Y -Ifft $(SRCS)

# DO NOT DELETE THIS LINE -- make depend depends on it.

myfft.o: myfft.h gus.h fft/fft.h fft/LinAlg.h fft/myenv.h
main.o: tune.h
gus.o: gus.h
tune.o: tune.h myfft.h gus.h fft/fft.h fft/LinAlg.h fft/myenv.h Note.h
Note.o: Note.h
