9450b9d706b7ae69ea543cbeef5dd48943710740
[vamp-aubio-plugins.git] / Makefile.osx
1 ##  Makefile for Vamp aubio plugin using command-line tools on OS/X.
2 ##
3 ##  Edit this to adjust compiler and library settings when
4 ##  building for OS/X.
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 -ftree-vectorize -fPIC
14
15 # Flags to determine processor architecture and system SDK
16 ARCHFLAGS       ?= -mmacosx-version-min=10.6 -arch x86_64
17
18 # Location of Vamp plugin SDK relative to the project directory
19 VAMPSDK_DIR     := ../vamp-plugin-sdk
20
21 # Libraries and linker flags required by plugin: add any -l<library>
22 # options here
23 PLUGIN_LDFLAGS  := -dynamiclib -exported_symbols_list vamp-plugin.list -lvamp-sdk
24
25 # File extension for plugin library on this platform
26 PLUGIN_EXT      := .dylib
27
28 include Makefile.inc