]> git.sesse.net Git - pitch/commitdiff
Added Makefile.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 11 Jul 2005 10:44:44 +0000 (10:44 +0000)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 11 Jul 2005 10:44:44 +0000 (10:44 +0000)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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