From: Steinar H. Gunderson Date: Mon, 11 Jul 2005 10:44:44 +0000 (+0000) Subject: Added Makefile. X-Git-Url: https://git.sesse.net/?p=pitch;a=commitdiff_plain;h=c9bc64dba5a96cbb81060ac4809c5c08b2ed3ce4 Added Makefile. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..716c9c8 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +CXXFLAGS=-O2 +CPPFLAGS= + +all: pitch +clean: + $(RM) pitch pitch.o + +pitch: pitch.o + $(CXX) -o pitch pitch.o -lfftw3 + +.PHONY: clean