Mercurial > hg > vampy
annotate Makefile.cc-linux @ 29:e80caada79a8
* Remove nonportable and unnecessary opendir features test (originally
inherited from the Vamp SDK's implementation of a similar plugin lookup,
but it's been gone from the SDK for ages now)
* Comment out some excessive debug output
author | cannam |
---|---|
date | Tue, 22 Sep 2009 15:20:44 +0000 |
parents | 7d28bed0864e |
children | c4da8d559872 |
rev | line source |
---|---|
cannam@4 | 1 |
cannam@24 | 2 CXXFLAGS := -I../vamp-plugin-sdk -O0 -g -Wall -I/usr/include/python2.6 -fPIC |
cannam@4 | 3 |
cannam@12 | 4 vampy.so: PyPlugin.o PyPlugScanner.o pyvamp-main.o Mutex.o |
cannam@24 | 5 g++ -shared $^ -o $@ -L../vamp-plugin-sdk/src -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython2.6 -lpthread -Wl,--version-script=vamp-plugin.map |
cannam@4 | 6 |
cannam@4 | 7 clean: |
cannam@4 | 8 rm *.o |
cannam@4 | 9 |