Mercurial > hg > nnls-chroma
annotate Makefile.osx @ 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 |
---|---|
matthiasm@0 | 1 |
Chris@176 | 2 VAMP_SDK_DIR = ../vamp-plugin-sdk |
matthiasm@0 | 3 |
matthiasm@142 | 4 BOOST_ROOT = ../boost_1_48_0 |
matthiasm@0 | 5 |
Chris@176 | 6 ARCHFLAGS ?= -mmacosx-version-min=10.7 -arch x86_64 |
Chris@176 | 7 OPTFLAGS ?= -O3 -ffast-math |
Chris@176 | 8 PLUGIN_EXT = .dylib |
matthiasm@0 | 9 |
Chris@155 | 10 LDFLAGS += $(ARCHFLAGS) -dynamiclib -install_name $(PLUGIN) $(VAMP_SDK_DIR)/libvamp-sdk.a -exported_symbols_list vamp-plugin.list -framework Accelerate |
matthiasm@0 | 11 |
Chris@176 | 12 include Makefile.inc |
matthiasm@0 | 13 |