]> git.sesse.net Git - pitch/blob - Makefile
Move the notes array into its own file, and add a separate version for equal temperam...
[pitch] / Makefile
1 CXXFLAGS=-g -Wall
2 CPPFLAGS=
3
4 all: pitch
5 clean:
6         $(RM) pitch pitch.o pitchdetector.o linux_audio.o
7
8 pitch: pitch.o pitchdetector.o linux_audio.o
9         $(CXX) -o pitch pitch.o pitchdetector.o linux_audio.o -lfftw3
10
11 .PHONY: clean