annotate Makefile.osx @ 198:3a76aa26b578 tip master

wscript: check for 64bit using sys.maxsize (closes #3)
author Paul Brossier <piem@piem.org>
date Mon, 04 Dec 2017 01:42:19 +0100
parents 4dd6a1cf6ab8
children
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@122 13 CFLAGS := -Wall -Wextra -O3 -g -fPIC $(CFLAGS)
piem@122 14
piem@122 15 # use local static aubio, built with ./scripts/get_aubio.sh
piem@122 16 AUBIO_LDFLAGS := ./contrib/aubio/build/src/libaubio.a
piem@122 17 AUBIO_LDFLAGS += -framework Accelerate
piem@75 18
piem@75 19 # Flags to determine processor architecture and system SDK
piem@122 20 ARCHFLAGS ?= -mmacosx-version-min=10.11 -stdlib=libc++
piem@75 21
piem@75 22 # Location of Vamp plugin SDK relative to the project directory
piem@122 23 VAMPSDK_DIR := ./contrib/vamp-plugin-sdk-2.6
piem@101 24
piem@101 25 # Location of libvamp-sdk.dylib
piem@122 26 VAMPBIN_DIR ?= ./contrib/vamp-plugin-sdk-2.6-binaries-osx
piem@75 27
piem@75 28 # Libraries and linker flags required by plugin: add any -l<library>
piem@75 29 # options here
piem@122 30 PLUGIN_LDFLAGS := -dynamiclib $(AUBIO_LDFLAGS) $(VAMPBIN_DIR)/libvamp-sdk.a -exported_symbols_list=vamp-plugin.list
piem@75 31
piem@75 32 # File extension for plugin library on this platform
piem@75 33 PLUGIN_EXT := .dylib
piem@75 34
piem@75 35 include Makefile.inc