.travis.yml: fix environment
[vamp-aubio-plugins.git] / Makefile.linux
1 ##  Makefile for Vamp aubio plugin using GNU tools on Linux.
2 ##
3 ##  Edit this to adjust compiler and library settings when
4 ##  building for Linux.
5 ##
6 ##  Note that the list of source files, etc, goes in Makefile.inc
7 ##  instead so that it can be included by all platform Makefiles.
8
9 # For a debug build...
10 #CFLAGS         := -Wall -Wextra -g -fPIC
11
12 # ... or for a release build
13 CFLAGS          := -Wall -Wextra -O3 -msse -msse2 -mfpmath=sse -ftree-vectorize -fPIC
14
15 # use local static aubio, built with ./scripts/get_aubio.sh
16 AUBIO_LDFLAGS := ./contrib/aubio/build/src/libaubio.a
17
18 # Location of Vamp plugin SDK relative to the project directory
19 VAMPSDK_DIR     := ./contrib/vamp-plugin-sdk-2.6
20
21 # Location of libvamp-sdk.a
22 VAMPBIN_DIR_LINUX64 ?= ./contrib/vamp-plugin-sdk-2.6-binaries-amd64-linux
23 VAMPBIN_DIR_LINUX32 ?= ./contrib/vamp-plugin-sdk-2.6-binaries-i686-linux
24
25 # Libraries and linker flags required by plugin: add any -l<library>
26 # options here
27 PLUGIN_LDFLAGS  := $(AUBIO_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,-z,defs -Wl,--version-script=vamp-plugin.map
28 PLUGIN_LIBS                     := -L$(VAMPBIN_DIR_LINUX32) -L$(VAMPBIN_DIR_LINUX64) -lvamp-sdk
29
30 # File extension for plugin library on this platform
31 PLUGIN_EXT      := .so
32
33 include Makefile.inc