comparison Makefile.cc-linux @ 28:52b6dbd61553 matthiasm-plugin

* minor tidy
author Chris Cannam
date Thu, 21 Oct 2010 20:19:29 +0100
parents 690bd9148467
children da3195577172
comparison
equal deleted inserted replaced
27:690bd9148467 28:52b6dbd61553
13 ## VampExamplePlugins project found in the build directory of the SDK.) 13 ## VampExamplePlugins project found in the build directory of the SDK.)
14 14
15 15
16 # Edit this to the base name of your plugin library 16 # Edit this to the base name of your plugin library
17 # 17 #
18 PLUGIN_LIBRARY_NAME = matthiasm 18 PLUGIN_LIBRARY_NAME = nnls-chroma
19 19
20 # Edit this to list one .o file for each .cpp file in your plugin project 20 # Edit this to list one .o file for each .cpp file in your plugin project
21 # 21 #
22 PLUGIN_CODE_OBJECTS = chromamethods.o NNLSChroma.o plugins.o nnls.o 22 PLUGIN_CODE_OBJECTS = chromamethods.o NNLSChroma.o plugins.o nnls.o
23 23
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 = ../vamp-plugin-sdk
28 QMDSP_DIR = /work/qm-dsp
29 NNLS_DIR = ../tsnnls/tsnnls
30 28
31 29
32 CFLAGS = -I$(VAMP_SDK_DIR) -I$(LAPACK_DIR) -I$(NNLS_DIR) -Wall -fPIC 30 ARCHFLAGS = -g
33 CXXFLAGS = -I$(VAMP_SDK_DIR) -I$(LAPACK_DIR) -I$(NNLS_DIR) -Wall -fPIC 31
32 CFLAGS = $(ARCHFLAGS) -I$(VAMP_SDK_DIR) -Wall -fPIC
33 CXXFLAGS = $(ARCHFLAGS) -I$(VAMP_SDK_DIR) -Wall -fPIC
34 PLUGIN_EXT = .so 34 PLUGIN_EXT = .so
35 PLUGIN = $(PLUGIN_LIBRARY_NAME)$(PLUGIN_EXT) 35 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 36 LDFLAGS = -shared -Wl,-soname=$(PLUGIN) $(VAMP_SDK_DIR)/libvamp-sdk.a -Wl,--version-script=vamp-plugin.map
37 LDFLAGS = -shared -Wl,-soname=$(PLUGIN) $(VAMP_SDK_DIR)/libvamp-sdk.a -Wl,--version-script=vamp-plugin.map $(QMDSP_DIR)/libqm-dsp.a
38 37
39 38
40 39
41 40
42 ## All of the above 41 ## All of the above