Makefile.osx: update
[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 CFLAGS += -I./contrib/aubio-dist/include
15 LDFLAGS += -L./contrib/aubio-dist/lib
16
17 # Location of Vamp plugin SDK relative to the project directory
18 VAMPSDK_DIR     := ./contrib/vamp-plugin-sdk-2.6
19
20 # Location of libvamp-sdk.a
21 VAMPBIN_DIR_LINUX64 ?= ./contrib/vamp-plugin-sdk-2.6-binaries-amd64-linux
22 VAMPBIN_DIR_LINUX32 ?= ./contrib/vamp-plugin-sdk-2.6-binaries-i686-linux
23
24 # Libraries and linker flags required by plugin: add any -l<library>
25 # options here
26 PLUGIN_LDFLAGS  := -shared -Wl,-Bsymbolic -Wl,-z,defs -Wl,--version-script=vamp-plugin.map
27 PLUGIN_LIBS                     := -L$(VAMPBIN_DIR_LINUX32) -L$(VAMPBIN_DIR_LINUX64) -lvamp-sdk
28
29 # File extension for plugin library on this platform
30 PLUGIN_EXT      := .so
31
32 include Makefile.inc