changeset 104:99ab4589999a

Makefile.inc: move defaults up, set to sdk 2.5
author Paul Brossier <piem@piem.org>
date Sat, 31 Jan 2015 14:59:16 +0100
parents 932099d4c440
children ed483706c930
files Makefile.inc
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.inc	Sat Jan 31 14:30:32 2015 +0100
+++ b/Makefile.inc	Sat Jan 31 14:59:16 2015 +0100
@@ -12,18 +12,18 @@
 #
 #   $ make -f Makefile.mingw
 
+# Defaults, overridden from the platform-specific Makefile
+VAMPSDK_DIR	?= ../vamp-plugin-sdk-2.5
+PLUGIN_EXT	?= .so
+CXX 		?= g++
+CC 		?= gcc
+
 CFLAGS		:= $(ARCHFLAGS) $(CFLAGS)
 CXXFLAGS	:= $(CFLAGS) -I. -I$(VAMPSDK_DIR) $(CXXFLAGS)
 
 LDFLAGS		:= -L$(VAMPSDK_DIR) -laubio $(LDFLAGS)
 PLUGIN_LDFLAGS	:= $(LDFLAGS) $(PLUGIN_LDFLAGS)
 
-# Defaults, overridden from the platform-specific Makefile
-VAMPSDK_DIR	?= ../vamp-plugin-sdk
-PLUGIN_EXT	?= .so
-CXX 		?= g++
-CC 		?= gcc
-
 # Location of our plugins
 #
 PLUGINDIR	= plugins