Mercurial > hg > piper-vamp-js
view generator/Makefile @ 161:577e5e55cc21
Docs, parameterise node binary, update expected output for static info &
category (+overdue update from copyright to rights)
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Thu, 15 Jun 2017 15:41:16 +0100 |
parents | 205f9a6240f5 |
children | a007360392e0 |
line wrap: on
line source
VAMPSDK_DIR := ../../vamp-plugin-sdk PIPERCPP_DIR := ../../piper-vamp-cpp PIPER_DIR := ../../piper INCFLAGS := -I$(PIPERCPP_DIR) -I$(PIPERCPP_DIR)/ext -I$(PIPERCPP_DIR)/ext/serd -I$(PIPERCPP_DIR)/ext/sord -I$(VAMPSDK_DIR) -I/usr/local/include OBJECTS := ./generator.o $(PIPERCPP_DIR)/ext/sord/sord-single.o CXXFLAGS := -Wall -Wextra -g3 -std=c++11 $(INCFLAGS) CFLAGS := -Wall -g3 -std=c99 $(INCFLAGS) LDFLAGS := $(VAMPSDK_DIR)/libvamp-hostsdk.a LDFLAGS += -ldl all: ../bin/piper-vamp-stub-generator ../bin/piper-vamp-stub-generator: $(OBJECTS) $(CXX) $^ -o $@ $(LDFLAGS) clean: rm -f $(OBJECTS)