annotate Makefile.osx @ 114:e0db793df4a3

vamp-aubio.n3: update links and download locations, patch from Chris Cannam
author Paul Brossier <piem@piem.org>
date Mon, 02 Feb 2015 21:13:48 +0100
parents ed483706c930
children 4dd6a1cf6ab8
rev   line source
piem@75 1 ## Makefile for Vamp aubio plugin using command-line tools on OS/X.
piem@75 2 ##
piem@75 3 ## Edit this to adjust compiler and library settings when
piem@75 4 ## building for OS/X.
piem@75 5 ##
piem@75 6 ## Note that the list of source files, etc, goes in Makefile.inc
piem@75 7 ## instead so that it can be included by all platform Makefiles.
piem@75 8
piem@75 9 # For a debug build...
piem@75 10 #CFLAGS := -Wall -Wextra -g -fPIC
piem@75 11
piem@75 12 # ... or for a release build
piem@75 13 CFLAGS := -Wall -Wextra -O3 -ftree-vectorize -fPIC
piem@75 14
piem@75 15 # Flags to determine processor architecture and system SDK
piem@75 16 ARCHFLAGS ?= -mmacosx-version-min=10.6 -arch x86_64
piem@75 17
piem@75 18 # Location of Vamp plugin SDK relative to the project directory
piem@101 19 VAMPSDK_DIR := ../vamp-plugin-sdk-2.5
piem@101 20
piem@101 21 # Location of libvamp-sdk.dylib
piem@105 22 VAMPBIN_DIR ?= ../vamp-plugin-sdk-2.5-binaries-osx
piem@75 23
piem@75 24 # Libraries and linker flags required by plugin: add any -l<library>
piem@75 25 # options here
piem@105 26 PLUGIN_LDFLAGS := -dynamiclib -exported_symbols_list=vamp-plugin.list -L$(VAMPBIN_DIR) -lvamp-sdk
piem@75 27
piem@75 28 # File extension for plugin library on this platform
piem@75 29 PLUGIN_EXT := .dylib
piem@75 30
piem@75 31 include Makefile.inc