Chris@378: Chris@378: ## Makefile for Vamp plugin using command-line tools on OS/X. Chris@378: ## Chris@378: ## Edit this to adjust compiler and library settings when Chris@378: ## building for OS/X. Chris@378: ## Chris@378: ## Note that the list of source files, etc, goes in Makefile.inc Chris@378: ## instead so that it can be included by all platform Makefiles. Chris@378: Chris@378: Chris@378: # For a debug build... Chris@378: Chris@378: CFLAGS := -Wall -Wextra -g -fPIC Chris@378: Chris@378: # ... or for a release build Chris@378: Chris@397: #CFLAGS := -Wall -Wextra -O3 -fPIC Chris@378: Chris@378: Chris@378: # Flags to determine processor architecture and system SDK Chris@378: Chris@397: ARCHFLAGS ?= -mmacosx-version-min=10.7 -arch x86_64 -stdlib=libc++ Chris@378: Chris@378: Chris@378: # Location of Vamp plugin SDK relative to the project directory Chris@378: Chris@378: VAMPSDK_DIR := ../vamp-plugin-sdk Chris@378: Chris@378: Chris@378: # Libraries and linker flags required by plugin: add any -l Chris@378: # options here Chris@378: Chris@378: PLUGIN_LDFLAGS := -dynamiclib -exported_symbols_list vamp-plugin.list $(VAMPSDK_DIR)/libvamp-sdk.a Chris@378: Chris@378: Chris@378: # File extension for plugin library on this platform Chris@378: Chris@378: PLUGIN_EXT := .dylib Chris@378: Chris@378: Chris@378: include Makefile.inc Chris@378: Chris@378: