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 / Makefile.osx @ 33:9d898889db1e

History | View | Annotate | Download (319 Bytes)

1

    
2
CFLAGS := -fPIC -O3 -Wall -mmacosx-version-min=10.7 -arch x86_64 -arch i386
3
CXXFLAGS := -I../vamp-plugin-sdk $(CFLAGS)
4

    
5
PLUGIN_LDFLAGS := -mmacosx-version-min=10.7 -arch x86_64 -arch i386 -dynamiclib -L../vamp-plugin-sdk -lvamp-sdk -exported_symbols_list vamp-plugin.list
6

    
7
PLUGIN_EXT := .dylib
8

    
9
include Makefile.inc
10

    
11