Mercurial > hg > vamp-plugin-sdk
comparison Makefile @ 99:fe31e6aed666
* Add --list-by-category to vamp-simple-host
* Some comment updates
| author | cannam | 
|---|---|
| date | Mon, 14 Jan 2008 11:00:41 +0000 | 
| parents | 074873a47447 | 
| children | bbe67d59b427 | 
   comparison
  equal
  deleted
  inserted
  replaced
| 98:896a97349ac5 | 99:fe31e6aed666 | 
|---|---|
| 26 # | 26 # | 
| 27 default: all | 27 default: all | 
| 28 | 28 | 
| 29 # Compile flags | 29 # Compile flags | 
| 30 # | 30 # | 
| 31 CXXFLAGS := $(CXXFLAGS) -O2 -Wall -I. -fpic | 31 CXXFLAGS := $(CXXFLAGS) -O2 -Wall -I. -fPIC | 
| 32 | 32 | 
| 33 # ar, ranlib | 33 # ar, ranlib | 
| 34 # | 34 # | 
| 35 AR := ar | 35 AR := ar | 
| 36 RANLIB := ranlib | 36 RANLIB := ranlib | 
| 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 # (Note that it is desirable to statically link libstdc++ if possible, | 
| 40 # because our plugin exposes only a C API so there are no boundary | 40 # because our plugin exposes only a C API so there are no boundary | 
| 41 # compatibility problems.) | 41 # compatibility problems.) | 
| 42 # | 42 # | 
| 43 #PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a | 43 PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a | 
| 44 PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a $(shell g++ -print-file-name=libstdc++.a) | 44 #PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a $(shell g++ -print-file-name=libstdc++.a) | 
| 45 | 45 | 
| 46 # File extension for a dynamically loadable object | 46 # File extension for a dynamically loadable object | 
| 47 # | 47 # | 
| 48 PLUGIN_EXT = .so | 48 PLUGIN_EXT = .so | 
| 49 #PLUGIN_EXT = .dll | 49 #PLUGIN_EXT = .dll | 
