Mercurial > hg > nnls-chroma
annotate Makefile.mingw @ 179:ea0c7382705a
Fix package path
author | Chris Cannam |
---|---|
date | Mon, 20 May 2019 16:05:05 +0100 |
parents | 259ef0f4622b |
children |
rev | line source |
---|---|
Chris@62 | 1 |
Chris@62 | 2 VAMP_SDK_DIR = ../vamp-plugin-sdk |
Chris@176 | 3 BOOST_ROOT = ../boost_1_44_0 |
Chris@62 | 4 |
Chris@154 | 5 # Allow the invoker to specify a particular set of tools through |
Chris@154 | 6 # TOOLPREFIX, e.g. for cross-compile |
Chris@176 | 7 CC = $(TOOLPREFIX)gcc |
Chris@176 | 8 CXX = $(TOOLPREFIX)g++ |
Chris@62 | 9 |
Chris@176 | 10 ARCHFLAGS ?= |
Chris@176 | 11 OPTFLAGS ?= -O2 -ffast-math |
Chris@75 | 12 |
Chris@62 | 13 PLUGIN_EXT = .dll |
Chris@75 | 14 |
Chris@156 | 15 LDFLAGS += -shared -static -fno-exceptions -static-libgcc -Wl,-soname=$(PLUGIN) $(VAMP_SDK_DIR)/libvamp-sdk.a -Wl,--retain-symbols-file=vamp-plugin.list |
Chris@62 | 16 |
Chris@176 | 17 include Makefile.inc |
Chris@62 | 18 |