diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/Makefile.am | 13 | 
1 files changed, 9 insertions, 4 deletions
| diff --git a/test/Makefile.am b/test/Makefile.am index 77a0f96..136ba28 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,18 +1,15 @@  # Rules for the test code (use `make check` to execute)  include $(top_srcdir)/src/Makefile.am.drumgizmo -TESTS = engine gui +TESTS = engine gui resampler  check_PROGRAMS = $(TESTS)  engine_CXXFLAGS = -DOUTPUT=\"engine\" $(CPPUNIT_CFLAGS) \  	-I$(top_srcdir)/src -I$(top_srcdir)/include \  	-I$(top_srcdir)/hugin -DDISABLE_HUGIN -  engine_CFLAGS = -DDISABLE_HUGIN -  engine_LDFLAGS = $(CPPUNIT_LIBS) $(DRUMGIZMO_LIBS) $(PTHREAD_LIBS) -  engine_SOURCES = \  	$(DRUMGIZMO_SOURCES) \  	$(top_srcdir)/hugin/hugin.c \ @@ -24,3 +21,11 @@ gui_LDFLAGS = $(CPPUNIT_LIBS)  gui_SOURCES = \  	test.cc \  	gui.cc + +resampler_CXXFLAGS = -DOUTPUT=\"resampler\" $(CPPUNIT_CFLAGS) \ +	$(ZITA_CXXFLAGS) $(SAMPLERATE_CFLAGS) +resampler_LDFLAGS = $(ZITA_LIBS) $(SAMPLERATE_LIBS) $(CPPUNIT_LIBS) +resampler_SOURCES = \ +	$(top_srcdir)/src/chresampler.cc \ +	test.cc \ +	resampler.cc
\ No newline at end of file | 
