libmain.cpp: add MelEnergy
[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 # 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
21 PLUGIN_LIBS                     := $(VAMPSDK_DIR)/libvamp-sdk.a
22
23 # File extension for plugin library on this platform
24 PLUGIN_EXT      := .so
25
26 include Makefile.inc