Mercurial > hg > pyin
annotate Makefile.osx @ 0:99bac62ee2da
added PYIN sources, should be compileable
author | matthiasm |
---|---|
date | Wed, 27 Nov 2013 11:59:49 +0000 |
parents | |
children | 1a18945a3263 |
rev | line source |
---|---|
matthiasm@0 | 1 ARCHFLAGS := |
matthiasm@0 | 2 CFLAGS := $(ARCHFLAGS) -O3 -I../inst/include -I/usr/local/boost -Wall -fPIC |
matthiasm@0 | 3 CXXFLAGS := $(CFLAGS) |
matthiasm@0 | 4 |
matthiasm@0 | 5 LDFLAGS := -lvamp-sdk $(ARCHFLAGS) |
matthiasm@0 | 6 PLUGIN_LDFLAGS := -dynamiclib -lvamp-sdk |
matthiasm@0 | 7 TEST_LDFLAGS := -lvamp-sdk -lboost_unit_test_framework |
matthiasm@0 | 8 PLUGIN_EXT := .dylib |
matthiasm@0 | 9 |
matthiasm@0 | 10 include Makefile.inc |
matthiasm@0 | 11 |