To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / skeleton / Makefile.osx

History | View | Annotate | Download (929 Bytes)

1

    
2
##  Makefile for Vamp plugin using command-line tools on OS/X.
3
##
4
##  Edit this to adjust compiler and library settings when
5
##  building for OS/X.
6
##
7
##  Note that the list of source files, etc, goes in Makefile.inc
8
##  instead so that it can be included by all platform Makefiles.
9

    
10

    
11
# For a debug build...
12

    
13
CFLAGS		:= -Wall -Wextra -g -fPIC
14

    
15
# ... or for a release build
16

    
17
#CFLAGS		:= -Wall -Wextra -O3 -fPIC
18

    
19

    
20
# Flags to determine processor architecture and system SDK
21

    
22
ARCHFLAGS	?= -mmacosx-version-min=10.7 -arch x86_64 -stdlib=libc++
23

    
24

    
25
# Location of Vamp plugin SDK relative to the project directory
26

    
27
VAMPSDK_DIR	:= ../vamp-plugin-sdk
28

    
29

    
30
# Libraries and linker flags required by plugin: add any -l<library>
31
# options here
32

    
33
PLUGIN_LDFLAGS	:= -dynamiclib -exported_symbols_list vamp-plugin.list $(VAMPSDK_DIR)/libvamp-sdk.a
34

    
35

    
36
# File extension for plugin library on this platform
37

    
38
PLUGIN_EXT	:= .dylib
39

    
40

    
41
include Makefile.inc
42

    
43