annotate Makefile.linux64 @ 43:ae21806fe84b tony

merge -- Chris can you check whether this still does what you'd expect it to do?
author matthiasm
date Thu, 30 Jan 2014 18:25:28 +0000
parents af0b8a418bf5
children 39cd0e1bac0b 564f80bc0da4
rev   line source
matthiasm@0 1
matthiasm@0 2 CFLAGS := -Wall -O3 -fPIC -I../vamp-plugin-sdk/
Chris@3 3 #CFLAGS := -g -fPIC -I../vamp-plugin-sdk
Chris@3 4
matthiasm@0 5 CXXFLAGS := $(CFLAGS)
matthiasm@0 6
Chris@16 7 PLUGIN_LDFLAGS := -shared -Wl,-Bstatic -L../vamp-plugin-sdk -lvamp-sdk -Wl,-Bdynamic -Wl,--version-script=vamp-plugin.map
matthiasm@0 8 TEST_LDFLAGS := -Wl,-Bstatic -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