comparison Makefile @ 18:b4043af42278

* Some textual changes
author cannam
date Mon, 10 Apr 2006 10:31:19 +0000
parents 61887dda7fe0
children 68b8b32a2070
comparison
equal deleted inserted replaced
17:a67eeb9d6341 18:b4043af42278
18 # Libraries required for the host at link time 18 # Libraries required for the host at link time
19 # 19 #
20 HOST_LIBS = -Lvamp-sdk -lvamp-sdk -lsndfile -ldl 20 HOST_LIBS = -Lvamp-sdk -lvamp-sdk -lsndfile -ldl
21 21
22 # Libraries required for the plugin. Note that we can (and actively 22 # Libraries required for the plugin. Note that we can (and actively
23 # want to) statically link with libstdc++, because our plugin exposes 23 # want to) statically link libstdc++, because our plugin exposes only
24 # a C API so there are no boundary compatibility problems. 24 # a C API so there are no boundary compatibility problems.
25 # 25 #
26 PLUGIN_LIBS = -Lvamp-sdk -lvamp-sdk 26 PLUGIN_LIBS = -Lvamp-sdk -lvamp-sdk
27 #PLUGIN_LIBS = -lvamp-sdk $(shell g++ -print-file-name=libstdc++.a) 27 #PLUGIN_LIBS = -Lvamp-sdk -lvamp-sdk $(shell g++ -print-file-name=libstdc++.a)
28 28
29 # Flags required to tell the compiler to link to a dynamically loadable object 29 # Flags required to tell the compiler to link to a dynamically loadable object
30 # 30 #
31 PLUGIN_LDFLAGS = -shared -Wl,-Bsymbolic -static-libgcc 31 PLUGIN_LDFLAGS = -shared -Wl,-Bsymbolic -static-libgcc
32 32