Mercurial > hg > piper-cpp
comparison Makefile @ 118:ff3fd8d1b2dc
Boilerplate comments
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 27 Oct 2016 12:01:37 +0100 |
parents | d15cb1151d76 |
children | ea06fae1567c |
comparison
equal
deleted
inserted
replaced
117:5dffc5147176 | 118:ff3fd8d1b2dc |
---|---|
3 PIPER_DIR := ../piper | 3 PIPER_DIR := ../piper |
4 | 4 |
5 CXXFLAGS := -Wall -Wextra -Werror -g3 -std=c++11 | 5 CXXFLAGS := -Wall -Wextra -Werror -g3 -std=c++11 |
6 INCFLAGS := -I$(VAMPSDK_DIR) -I. -I/usr/local/include | 6 INCFLAGS := -I$(VAMPSDK_DIR) -I. -I/usr/local/include |
7 | 7 |
8 LDFLAGS := -L$(VAMPSDK_DIR) -L/usr/local/lib -lvamp-hostsdk -lcapnp -lkj | 8 #LDFLAGS := -L$(VAMPSDK_DIR) -L/usr/local/lib -lvamp-hostsdk -lcapnp -lkj |
9 LDFLAGS := $(VAMPSDK_DIR)/libvamp-hostsdk.a -lcapnp -lkj | |
9 | 10 |
10 LDFLAGS += -ldl | 11 LDFLAGS += -ldl |
11 | 12 |
12 all: o bin bin/piper-convert bin/piper-vamp-server | 13 all: o bin bin/piper-convert bin/piper-vamp-server |
13 | 14 |
40 | 41 |
41 test: all | 42 test: all |
42 test/test-server.sh | 43 test/test-server.sh |
43 | 44 |
44 clean: | 45 clean: |
45 rm -f */*.o vamp-capnp/piper.capnp.h vamp-capnp/piper.capnp.c++ | 46 rm -f */*.o |
46 | 47 |
47 distclean: clean | 48 distclean: clean |
48 rm -f bin/* | 49 rm -f bin/* |
49 | 50 |
50 # cancel implicit rule which otherwise could try to link %.capnp | 51 # cancel implicit rule which otherwise could try to link %.capnp |