annotate Makefile.linux64 @ 163:4a97f7638ffd v1.2

Run regression tests only if testdata dir present (so we can exclude from minimal source package)
author Chris Cannam
date Thu, 06 Feb 2020 15:01:51 +0000
parents 2e6911badde9
children
rev   line source
matthiasm@0 1
Chris@157 2 CFLAGS := $(CFLAGS) -Wall -O3 -fPIC -I../vamp-plugin-sdk/ -I../../vamp-plugin-sdk/
Chris@138 3 #CFLAGS := $(CFLAGS) -Wall -Wextra -Werror -g -fPIC -I../vamp-plugin-sdk/ -I../../vamp-plugin-sdk/
Chris@3 4
Chris@79 5 CXXFLAGS := $(CXXFLAGS) $(CFLAGS)
matthiasm@0 6
Chris@114 7 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 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