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

The primary repository for this project is hosted at https://github.com/cannam/constant-q-cpp/ .
This repository is a read-only copy which is updated automatically every hour.

Statistics Download as Zip
| Branch: | Revision:

root / Makefile.osx

History | View | Annotate | Download (340 Bytes)

1 129:6993e17878b1 c
2 181:1ab84ec46c15 c
ARCHFLAGS	?= -mmacosx-version-min=10.7 -arch x86_64 -arch i386 -stdlib=libc++
3 157:8d6c503baf0d c
4
CFLAGS 		:= $(ARCHFLAGS) -Wall -O3 -ftree-vectorize
5 181:1ab84ec46c15 c
CXXFLAGS  	:= $(CFLAGS)
6 157:8d6c503baf0d c
7 169:8a1d240ac542 c
LDFLAGS		:= $(ARCHFLAGS)
8
PLUGIN_LDFLAGS	  := -dynamiclib -exported_symbols_list vamp/vamp-plugin.list
9 129:6993e17878b1 c
10
VAMPSDK_DIR := ../vamp-plugin-sdk
11
12
PLUGIN_EXT := .dylib
13
14
include Makefile.inc