Mercurial > hg > nnls-chroma
annotate Makefile.mingw @ 184:82d5d11b68d7 tip
Update library URI so it's not document-local
author | Chris Cannam |
---|---|
date | Wed, 22 Apr 2020 14:21:25 +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 |