comparison Makefile.linux @ 75:e98a33e56cdd

Makefile: splitted for osx/linux/mingw32
author Paul Brossier <piem@piem.org>
date Wed, 28 Jan 2015 15:31:09 +0100
parents
children 354287950e78
comparison
equal deleted inserted replaced
74:ba4b6672a8de 75:e98a33e56cdd
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 # Location of Vamp plugin SDK relative to the project directory
16 VAMPSDK_DIR := ../vamp-plugin-sdk
17
18 # Libraries and linker flags required by plugin: add any -l<library>
19 # options here
20 PLUGIN_LDFLAGS := -shared -Wl,-Bsymbolic -Wl,-z,defs -Wl,--version-script=vamp-plugin.map $(VAMPSDK_DIR)/libvamp-sdk.a
21
22 # File extension for plugin library on this platform
23 PLUGIN_EXT := .so
24
25 include Makefile.inc