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