annotate Makefile.linux @ 105:ed483706c930

Makefile.osx: rename variable to VAMPBIN_DIR
author Paul Brossier <piem@piem.org>
date Sat, 31 Jan 2015 14:59:43 +0100
parents c4a737488a9e
children 1912263ce998
rev   line source
piem@75 1 ## Makefile for Vamp aubio plugin using GNU tools on Linux.
piem@75 2 ##
piem@75 3 ## Edit this to adjust compiler and library settings when
piem@75 4 ## building for Linux.
piem@75 5 ##
piem@75 6 ## Note that the list of source files, etc, goes in Makefile.inc
piem@75 7 ## instead so that it can be included by all platform Makefiles.
piem@75 8
piem@75 9 # For a debug build...
piem@75 10 #CFLAGS := -Wall -Wextra -g -fPIC
piem@75 11
piem@75 12 # ... or for a release build
piem@75 13 CFLAGS := -Wall -Wextra -O3 -msse -msse2 -mfpmath=sse -ftree-vectorize -fPIC
piem@75 14
piem@75 15 # Location of Vamp plugin SDK relative to the project directory
piem@102 16 VAMPSDK_DIR := ../vamp-plugin-sdk-2.5
piem@75 17
piem@75 18 # Libraries and linker flags required by plugin: add any -l<library>
piem@75 19 # options here
piem@76 20 PLUGIN_LDFLAGS := -shared -Wl,-Bsymbolic -Wl,-z,defs -Wl,--version-script=vamp-plugin.map
piem@76 21 PLUGIN_LIBS := $(VAMPSDK_DIR)/libvamp-sdk.a
piem@75 22
piem@75 23 # File extension for plugin library on this platform
piem@75 24 PLUGIN_EXT := .so
piem@75 25
piem@75 26 include Makefile.inc