annotate Makefile.linux64 @ 64:e291f3657872 tony tony_v0.5

Didn't intend to commit the build in debug mode
author Chris Cannam
date Wed, 02 Apr 2014 10:37:49 +0100
parents d501b52f95b6
children 7ef7f6e90966
rev   line source
matthiasm@0 1
Chris@64 2 CFLAGS := -Wall -O3 -fPIC -I../vamp-plugin-sdk/ -I../../vamp-plugin-sdk/
Chris@64 3 #CFLAGS := -g -Wall -fPIC -I../vamp-plugin-sdk
Chris@3 4
matthiasm@0 5 CXXFLAGS := $(CFLAGS)
matthiasm@0 6
Chris@51 7 PLUGIN_LDFLAGS := -shared -Wl,-Bstatic -L../vamp-plugin-sdk -L../../vamp-plugin-sdk -lvamp-sdk -Wl,-Bdynamic -Wl,--version-script=vamp-plugin.map
Chris@51 8 TEST_LDFLAGS := -Wl,-Bstatic -L../vamp-plugin-sdk -L../../vamp-plugin-sdk -lvamp-sdk -Wl,-Bdynamic -lboost_unit_test_framework
matthiasm@0 9
matthiasm@0 10 PLUGIN_EXT := .so
matthiasm@0 11
matthiasm@0 12 include Makefile.inc
matthiasm@0 13