scripts/: add script to fetch external resources on linux
[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-2.5
20
21 # Location of libvamp-sdk.dylib
22 VAMPBIN_DIR ?= ../vamp-plugin-sdk-2.5-binaries-osx
23
24 # Libraries and linker flags required by plugin: add any -l<library>
25 # options here
26 PLUGIN_LDFLAGS  := -dynamiclib -exported_symbols_list=vamp-plugin.list -L$(VAMPBIN_DIR) -lvamp-sdk
27
28 # File extension for plugin library on this platform
29 PLUGIN_EXT      := .dylib
30
31 include Makefile.inc