From 308a53c389cdc2631860f434989cd57efbf91145 Mon Sep 17 00:00:00 2001 From: Roland Stigge Date: Sun, 17 Feb 2019 14:53:33 +0100 Subject: Implemented Tuner --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index c78f4d7..c6cd4e3 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,10 @@ PREFIX=/usr/local/bin all: tunerdemo testsuite -tunerdemo: fft.o autocorrelation.o tuner.o tunerdemo.o +tunerdemo: util.o fft.o autocorrelation.o tuner.o tunerdemo.o $(CXX) $(CXXFLAGS) -o $@ $^ -testsuite: fft.o autocorrelation.o tuner.o testsuite.o +testsuite: util.o fft.o autocorrelation.o tuner.o testsuite.o $(CXX) $(CXXFLAGS) -o $@ $^ fft.o: fft.cpp fft.h @@ -27,6 +27,9 @@ autocorrelation.o: autocorrelation.cpp autocorrelation.h tuner.o: tuner.cpp tuner.h $(CXX) $(CXXFLAGS) -c -o $@ $< +util.o: util.cpp util.h + $(CXX) $(CXXFLAGS) -c -o $@ $< + testsuite.o: testsuite.cpp fft.h autocorrelation.h tuner.h $(CXX) $(CXXFLAGS) -c -o $@ $< -- cgit v1.2.3