annotate Makefile.linux64 @ 116:e9b99e85b929 tony

one minor one major thing: * moved line in PYinVamp.cpp -- should not have any effect * reinstated using peaks instead of using the difference function directly
author matthiasm
date Mon, 23 Mar 2015 16:37:28 +0000
parents 7ef7f6e90966
children d71170f5ba76
rev   line source
matthiasm@0 1
Chris@114 2 CFLAGS := $(CFLAGS) -Wall -O3 -fPIC -I../vamp-plugin-sdk/ -I../../vamp-plugin-sdk/
Chris@3 3
Chris@79 4 CXXFLAGS := $(CXXFLAGS) $(CFLAGS)
matthiasm@0 5
Chris@114 6 PLUGIN_LDFLAGS := $(LDFLAGS) -shared -Wl,-Bstatic -L../vamp-plugin-sdk -L../../vamp-plugin-sdk -lvamp-sdk -Wl,-Bdynamic -Wl,--version-script=vamp-plugin.map
Chris@51 7 TEST_LDFLAGS := -Wl,-Bstatic -L../vamp-plugin-sdk -L../../vamp-plugin-sdk -lvamp-sdk -Wl,-Bdynamic -lboost_unit_test_framework
matthiasm@0 8
matthiasm@0 9 PLUGIN_EXT := .so
matthiasm@0 10
matthiasm@0 11 include Makefile.inc
matthiasm@0 12