Mercurial > hg > piper-cpp
view Makefile @ 138:b01dac674beb
Discard stdout output that occurs in between our own outputs (e.g. from plugin)
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 12 Jan 2017 08:49:26 +0000 |
parents | ea06fae1567c |
children | bf8e3e7dd7de |
line wrap: on
line source
VAMPSDK_DIR := ../vamp-plugin-sdk PIPER_DIR := ../piper CXXFLAGS := -Wall -Wextra -Werror -g3 -std=c++11 INCFLAGS := -I$(VAMPSDK_DIR) -I. -I/usr/local/include #LDFLAGS := -L$(VAMPSDK_DIR) -L/usr/local/lib -lvamp-hostsdk -lcapnp -lkj LDFLAGS := $(VAMPSDK_DIR)/libvamp-hostsdk.a -lcapnp -lkj LDFLAGS += -ldl all: o bin bin/piper-convert bin/piper-vamp-simple-server bin: mkdir bin o: mkdir o bin/piper-convert: o/convert.o o/json11.o o/piper.capnp.o c++ $(CXXFLAGS) $^ -o $@ $(LDFLAGS) 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 # capnp compile -oc++:vamp-capnp --src-prefix=$(PIPER_DIR)/capnp $< o/piper.capnp.o: vamp-capnp/piper.capnp.c++ vamp-capnp/piper.capnp.h c++ $(CXXFLAGS) $(INCFLAGS) -c $< -o $@ o/json11.o: json11/json11.cpp c++ $(CXXFLAGS) -c $< -o $@ 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/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 test/test-server.sh clean: rm -f */*.o distclean: clean rm -f bin/* # cancel implicit rule which otherwise could try to link %.capnp %: %.o