annotate Makefile.linux64 @ 61:d501b52f95b6 tony

Move these initialisers out, don't fill up the stack with them
author Chris Cannam
date Tue, 01 Apr 2014 10:38:39 +0100
parents 39cd0e1bac0b
children e291f3657872
rev   line source
matthiasm@0 1
Chris@61 2 #CFLAGS := -Wall -O3 -fPIC -I../vamp-plugin-sdk/ -I../../vamp-plugin-sdk/
Chris@61 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