comparison Makefile.cc-linux @ 31:e2b8b2a1cd9b matthiasm-plugin

* More tidying
author Chris Cannam
date Thu, 21 Oct 2010 19:23:02 +0100
parents 690bd9148467
children 9fe53dd1c41a
comparison
equal deleted inserted replaced
27:690bd9148467 31:e2b8b2a1cd9b
24 # Edit this to the location of the Vamp plugin SDK, relative to your 24 # Edit this to the location of the Vamp plugin SDK, relative to your
25 # project directory 25 # project directory
26 # 26 #
27 VAMP_SDK_DIR = /work/vamp-plugin-sdk 27 VAMP_SDK_DIR = /work/vamp-plugin-sdk
28 QMDSP_DIR = /work/qm-dsp 28 QMDSP_DIR = /work/qm-dsp
29 NNLS_DIR = ../tsnnls/tsnnls
30 29
31 30 CFLAGS = -I$(VAMP_SDK_DIR) -Wall -fPIC
32 CFLAGS = -I$(VAMP_SDK_DIR) -I$(LAPACK_DIR) -I$(NNLS_DIR) -Wall -fPIC 31 CXXFLAGS = -I$(VAMP_SDK_DIR) -Wall -fPIC
33 CXXFLAGS = -I$(VAMP_SDK_DIR) -I$(LAPACK_DIR) -I$(NNLS_DIR) -Wall -fPIC
34 PLUGIN_EXT = .so 32 PLUGIN_EXT = .so
35 PLUGIN = $(PLUGIN_LIBRARY_NAME)$(PLUGIN_EXT) 33 PLUGIN = $(PLUGIN_LIBRARY_NAME)$(PLUGIN_EXT)
36 #LDFLAGS = -shared -Wl,-soname=$(PLUGIN) $(VAMP_SDK_DIR)/libvamp-sdk.a -Wl,--version-script=vamp-plugin.map $(QMDSP_DIR)/libqm-dsp.a ../tsnnls/tsnnls/.libs/libtsnnls.a -llapack-3 34 #LDFLAGS = -shared -Wl,-soname=$(PLUGIN) $(VAMP_SDK_DIR)/libvamp-sdk.a -Wl,--version-script=vamp-plugin.map $(QMDSP_DIR)/libqm-dsp.a ../tsnnls/tsnnls/.libs/libtsnnls.a -llapack-3
37 LDFLAGS = -shared -Wl,-soname=$(PLUGIN) $(VAMP_SDK_DIR)/libvamp-sdk.a -Wl,--version-script=vamp-plugin.map $(QMDSP_DIR)/libqm-dsp.a 35 LDFLAGS = -shared -Wl,-soname=$(PLUGIN) $(VAMP_SDK_DIR)/libvamp-sdk.a -Wl,--version-script=vamp-plugin.map $(QMDSP_DIR)/libqm-dsp.a
38 36