Revision 47:f72a470fe4b5 Makefile.inc

View differences:

Makefile.inc
14 14
PLUGIN := cepstral-pitchtracker$(PLUGIN_EXT)
15 15

  
16 16
HEADERS := CepstralPitchTracker.h \
17
           MeanFilter.h \
17 18
	   NoteHypothesis.h \
18 19
	   PeakInterpolator.h
19 20

  
......
24 25
PLUGIN_MAIN := libmain.cpp
25 26

  
26 27
TESTS := test/test-notehypothesis \
28
         test/test-meanfilter \
27 29
         test/test-peakinterpolator
28 30

  
29 31
OBJECTS := $(SOURCES:.cpp=.o)
......
40 42
test/test-notehypothesis: test/TestNoteHypothesis.o $(OBJECTS)
41 43
	$(CXX) -o $@ $^ $(TEST_LDFLAGS)
42 44

  
45
test/test-meanfilter: test/TestMeanFilter.o $(OBJECTS)
46
	$(CXX) -o $@ $^ $(TEST_LDFLAGS)
47

  
43 48
test/test-peakinterpolator: test/TestPeakInterpolator.o $(OBJECTS)
44 49
	$(CXX) -o $@ $^ $(TEST_LDFLAGS)
45 50

  

Also available in: Unified diff