From 9080e235cf7d3cb1bf4b90e3583344cf84d39e56 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 22 Jul 2016 00:20:37 +0200 Subject: [PATCH] Makefile.linux: update --- Makefile.linux | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile.linux b/Makefile.linux index be2e140..dea3e58 100644 --- a/Makefile.linux +++ b/Makefile.linux @@ -11,8 +11,9 @@ # ... or for a release build CFLAGS := -Wall -Wextra -O3 -msse -msse2 -mfpmath=sse -ftree-vectorize -fPIC -CFLAGS += -I./contrib/aubio-dist/include -LDFLAGS += -L./contrib/aubio-dist/lib + +# use local static aubio, built with ./scripts/get_aubio.sh +AUBIO_LDFLAGS := ./contrib/aubio/build/src/libaubio.a # Location of Vamp plugin SDK relative to the project directory VAMPSDK_DIR := ./contrib/vamp-plugin-sdk-2.6 @@ -23,7 +24,7 @@ VAMPBIN_DIR_LINUX32 ?= ./contrib/vamp-plugin-sdk-2.6-binaries-i686-linux # Libraries and linker flags required by plugin: add any -l # options here -PLUGIN_LDFLAGS := -shared -Wl,-Bsymbolic -Wl,-z,defs -Wl,--version-script=vamp-plugin.map +PLUGIN_LDFLAGS := $(AUBIO_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,-z,defs -Wl,--version-script=vamp-plugin.map PLUGIN_LIBS := -L$(VAMPBIN_DIR_LINUX32) -L$(VAMPBIN_DIR_LINUX64) -lvamp-sdk # File extension for plugin library on this platform -- 2.11.0