changeset 34:8edcf48f4031 matthiasm-plugin

changed Makefile: added chromamethods to the plugin code objecs, minimum OSX set to 10.5 (and no ppc)
author Matthias Mauch <mail@matthiasmauch.net>
date Fri, 22 Oct 2010 16:19:40 +0900
parents 816e95ed0b0d
children cf8898a0174c
files Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Thu Oct 21 21:51:36 2010 +0100
+++ b/Makefile	Fri Oct 22 16:19:40 2010 +0900
@@ -2,7 +2,7 @@
 
 # Edit this to list one .o file for each .cpp file in your plugin project
 #
-PLUGIN_CODE_OBJECTS = NNLSChroma.o plugins.o nnls.o
+PLUGIN_CODE_OBJECTS = NNLSChroma.o plugins.o nnls.o chromamethods.o
 
 # Edit this to the location of the Vamp plugin SDK, relative to your
 # project directory
@@ -13,7 +13,7 @@
 
 
 ##  Uncomment these for an OS/X native build using command-line tools:
-ARCHFLAGS = -isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -arch ppc -arch i386
+ARCHFLAGS = -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -arch i386
 CFLAGS = $(ARCHFLAGS) -Wall -fPIC -g
 CXXFLAGS = $(CFLAGS) -I$(VAMP_SDK_DIR) -I$(BOOST_ROOT)
 PLUGIN_EXT = .dylib