changeset 58:a3d463ea7a57

Release builds
author Chris Cannam
date Thu, 16 Oct 2014 14:53:18 +0100
parents 252d2b03f4a8
children 02721bb9c4f0
files Makefile.linux Makefile.mingw32 Makefile.osx
diffstat 3 files changed, 8 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.linux	Thu Oct 16 14:22:50 2014 +0100
+++ b/Makefile.linux	Thu Oct 16 14:53:18 2014 +0100
@@ -10,11 +10,11 @@
 
 # For a debug build...
 
-CFLAGS		:= -Wall -Wextra -g -fPIC
+#CFLAGS		:= -Wall -Wextra -g -fPIC
 
 # ... or for a release build
 
-#CFLAGS		:= -Wall -Wextra -O3 -msse -msse2 -mfpmath=sse -ftree-vectorize -fPIC
+CFLAGS		:= -Wall -Wextra -O3 -msse -msse2 -mfpmath=sse -ftree-vectorize -fPIC
 
 
 # Location of Vamp plugin SDK relative to the project directory
--- a/Makefile.mingw32	Thu Oct 16 14:22:50 2014 +0100
+++ b/Makefile.mingw32	Thu Oct 16 14:53:18 2014 +0100
@@ -17,11 +17,11 @@
 
 # For a debug build...
 
-CFLAGS		:= -Wall -Wextra -g
+#CFLAGS		:= -Wall -Wextra -g
 
 # ... or for a release build
 
-#CFLAGS		:= -Wall -Wextra -O3 -ftree-vectorize
+CFLAGS		:= -Wall -Wextra -O3 -ftree-vectorize
 
 
 # Location of Vamp plugin SDK relative to the project directory
--- a/Makefile.osx	Thu Oct 16 14:22:50 2014 +0100
+++ b/Makefile.osx	Thu Oct 16 14:53:18 2014 +0100
@@ -10,11 +10,11 @@
 
 # For a debug build...
 
-CFLAGS		:= -Wall -Wextra -g -fPIC
+#CFLAGS		:= -Wall -Wextra -g -fPIC
 
 # ... or for a release build
 
-#CFLAGS		:= -Wall -Wextra -O3 -ftree-vectorize -fPIC
+CFLAGS		:= -Wall -Wextra -O3 -ftree-vectorize -fPIC
 
 
 # Flags to determine processor architecture and system SDK
@@ -24,13 +24,13 @@
 
 # Location of Vamp plugin SDK relative to the project directory
 
-VAMPSDK_DIR	:= /usr/local/include
+VAMPSDK_DIR	:= ../vamp-plugin-sdk
 
 
 # Libraries and linker flags required by plugin: add any -l<library>
 # options here
 
-PLUGIN_LDFLAGS	:= -dynamiclib -exported_symbols_list vamp-plugin.list /usr/local/lib/libvamp-sdk.a
+PLUGIN_LDFLAGS	:= -dynamiclib -exported_symbols_list vamp-plugin.list -lvamp-sdk
 
 
 # File extension for plugin library on this platform