Mercurial > hg > segmenter-vamp-plugin
annotate Makefile.osx @ 53:19d768025620
moved README to root
author | matthiasm |
---|---|
date | Thu, 13 Jun 2013 12:07:55 +0100 |
parents | 67bf860c0b4b |
children | 62c3cba7d241 |
rev | line source |
---|---|
max@1 | 1 |
matthiasm@51 | 2 CFLAGS := -O3 -ftree-vectorize -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -arch i386 -arch x86_64 -I/Developer/SDKs/MacOSX10.7.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/Headers/ -Ivamp-plugin-sdk -Iqm-dsp -I../boost_1_48_0 |
max@1 | 3 CXXFLAGS := $(CFLAGS) |
max@1 | 4 |
matthiasm@51 | 5 LDFLAGS := -isysroot /Developer/SDKs/MacOSX10.7.sdk -L/usr/lib/ -arch i386 -arch x86_64 -dynamiclib -install_name qm-vamp-plugins.dylib |
max@1 | 6 |
max@1 | 7 PLUGIN_EXT := .dylib |
max@1 | 8 |
matthiasm@51 | 9 include Makefile.inc |
max@1 | 10 |