Mercurial > hg > vamp-plugin-sdk
comparison Makefile @ 167:31eda4b11f2b
* First bit of Vamp v2 work -- add an optional duration to features in
a backward compatible way.
Warning: this code is unstable and experimental and may change
significantly in the coming weeks.
author | cannam |
---|---|
date | Thu, 17 Jul 2008 08:52:26 +0000 |
parents | 120f88880347 |
children | 006a775133b1 |
comparison
equal
deleted
inserted
replaced
166:120f88880347 | 167:31eda4b11f2b |
---|---|
34 # | 34 # |
35 AR := ar | 35 AR := ar |
36 RANLIB := ranlib | 36 RANLIB := ranlib |
37 | 37 |
38 # Libraries required for the plugins. | 38 # Libraries required for the plugins. |
39 # (Note that it is desirable to statically link libstdc++ if possible, | 39 # |
40 # because our plugin exposes only a C API so there are no boundary | 40 PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a |
41 # compatibility problems.) | |
42 # | |
43 #PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a | |
44 PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a $(shell g++ -print-file-name=libstdc++.a) | |
45 | 41 |
46 # File extension for a dynamically loadable object | 42 # File extension for a dynamically loadable object |
47 # | 43 # |
48 PLUGIN_EXT = .so | 44 PLUGIN_EXT = .so |
49 #PLUGIN_EXT = .dll | 45 #PLUGIN_EXT = .dll |