.appveyor.yml: improve
[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 -g -fPIC $(CFLAGS)
14
15 # use local static aubio, built with ./scripts/get_aubio.sh
16 AUBIO_LDFLAGS := ./contrib/aubio/build/src/libaubio.a
17 AUBIO_LDFLAGS += -framework Accelerate
18
19 # Flags to determine processor architecture and system SDK
20 ARCHFLAGS       ?= -mmacosx-version-min=10.11 -stdlib=libc++
21
22 # Location of Vamp plugin SDK relative to the project directory
23 VAMPSDK_DIR    := ./contrib/vamp-plugin-sdk-2.6
24
25 # Location of libvamp-sdk.dylib
26 VAMPBIN_DIR ?= ./contrib/vamp-plugin-sdk-2.6-binaries-osx
27
28 # Libraries and linker flags required by plugin: add any -l<library>
29 # options here
30 PLUGIN_LDFLAGS  := -dynamiclib $(AUBIO_LDFLAGS) $(VAMPBIN_DIR)/libvamp-sdk.a -exported_symbols_list=vamp-plugin.list
31
32 # File extension for plugin library on this platform
33 PLUGIN_EXT      := .dylib
34
35 include Makefile.inc