From 3b28404361abfb6b4df9d0ab2ae23f3034b75b34 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 31 Jan 2015 14:59:16 +0100 Subject: [PATCH] Makefile.inc: move defaults up, set to sdk 2.5 --- Makefile.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile.inc b/Makefile.inc index 1fa6e5c..3015cca 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -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 -- 2.11.0