annotate build/osx/Makefile.osx @ 166:15e901d613a5
Incorporate any flags passed in
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Wed, 06 Aug 2014 15:59:31 +0100 |
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
|