diff Makefile @ 205:587e9691a44e

Merge pull request #4 from piper-audio/test/plugin-stub-configured-framing Test/plugin stub configured framing
author Chris Cannam <cannam@all-day-breakfast.com>
date Thu, 09 Feb 2017 12:54:00 +0000
parents e07c05ea8952
children f7045f7995bc
line wrap: on
line diff
--- a/Makefile	Thu Feb 09 11:38:56 2017 +0000
+++ b/Makefile	Thu Feb 09 12:54:00 2017 +0000
@@ -10,7 +10,9 @@
 
 LDFLAGS		+= -ldl
 
-all:	o bin bin/piper-convert bin/piper-vamp-simple-server
+TEST_SRCS 	:= test/vamp-client/tst_PluginStub.cpp
+
+all:	o bin bin/piper-convert bin/piper-vamp-simple-server bin/test-suite
 
 bin:
 	mkdir bin
@@ -23,6 +25,10 @@
 
 bin/piper-vamp-simple-server: o/simple-server.o o/json11.o o/piper.capnp.o
 	c++ $(CXXFLAGS) $^ -o $@ $(LDFLAGS)
+	
+bin/test-suite: test/main.cpp $(TEST_SRCS)
+	c++ $(CXXFLAGS) $(INCFLAGS) $< $(TEST_SRCS) -o $@ $(LDFLAGS)
+	bin/test-suite
 
 o/piper.capnp.o:	vamp-capnp/piper.capnp.c++
 	c++ $(CXXFLAGS) $(INCFLAGS) -c $< -o $@
@@ -42,13 +48,14 @@
 	c++ $(CXXFLAGS) $(INCFLAGS) -c $< -o $@
 
 test:	all
+	bin/test-suite -s -d yes
 	vamp-server/test.sh
 
 clean:
 	rm -f */*.o
 
 distclean:	clean
-	rm -f bin/*
+	rm -rf bin/*
 
 # cancel implicit rule which otherwise could try to link %.capnp
 %:	%.o