annotate build/osx/Makefile.osx @ 182:9c52dac85835
Update README and adjust locations of INSTALL files to reflect the fact that this repo is not a binary distribution
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Mon, 21 Mar 2016 19:49:36 +0000 |
parents |
3c4d87fba41c |
children |
258939b7c810 |
rev |
line source |
c@138
|
1
|
c@164
|
2 ARCHFLAGS ?= -mmacosx-version-min=10.6 -arch x86_64 -arch i386
|
c@138
|
3
|
c@162
|
4 CXXFLAGS += $(ARCHFLAGS) -O3 -ftree-vectorize -I../vamp-plugin-sdk -DUSE_PTHREADS
|
c@138
|
5
|
c@162
|
6 LDFLAGS += $(ARCHFLAGS) -dynamiclib -lqm-dsp ../vamp-plugin-sdk/libvamp-sdk.a -framework Accelerate -lpthread -exported_symbols_list vamp-plugin.list -install_name qm-vamp-plugins.dylib
|
c@138
|
7
|
c@138
|
8 PLUGIN_EXT := .dylib
|
c@138
|
9
|
c@160
|
10 MAKEFILE_EXT := .osx
|
c@160
|
11
|
c@138
|
12 include build/general/Makefile.inc
|
c@138
|
13
|