Mercurial > hg > piper-cpp
diff Makefile @ 125:ea06fae1567c
Rename server to simple-server, and add some more description in usage
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 28 Oct 2016 11:08:17 +0100 |
parents | ff3fd8d1b2dc |
children | bf8e3e7dd7de |
line wrap: on
line diff
--- a/Makefile Thu Oct 27 16:14:22 2016 +0100 +++ b/Makefile Fri Oct 28 11:08:17 2016 +0100 @@ -10,7 +10,7 @@ LDFLAGS += -ldl -all: o bin bin/piper-convert bin/piper-vamp-server +all: o bin bin/piper-convert bin/piper-vamp-simple-server bin: mkdir bin @@ -21,7 +21,7 @@ bin/piper-convert: o/convert.o o/json11.o o/piper.capnp.o c++ $(CXXFLAGS) $^ -o $@ $(LDFLAGS) -bin/piper-vamp-server: o/server.o o/json11.o o/piper.capnp.o +bin/piper-vamp-simple-server: o/simple-server.o o/json11.o o/piper.capnp.o c++ $(CXXFLAGS) $^ -o $@ $(LDFLAGS) #vamp-capnp/piper.capnp.h: $(PIPER_DIR)/capnp/piper.capnp @@ -36,7 +36,7 @@ o/convert.o: vamp-server/convert.cpp vamp-capnp/piper.capnp.h vamp-capnp/VampnProto.h vamp-json/VampJson.h c++ $(CXXFLAGS) $(INCFLAGS) -c $< -o $@ -o/server.o: vamp-server/server.cpp vamp-capnp/piper.capnp.h vamp-capnp/VampnProto.h vamp-json/VampJson.h +o/simple-server.o: vamp-server/simple-server.cpp vamp-capnp/piper.capnp.h vamp-capnp/VampnProto.h vamp-json/VampJson.h c++ $(CXXFLAGS) $(INCFLAGS) -c $< -o $@ test: all