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