Mercurial > hg > vampy
annotate Makefile.cc-linux @ 10:8e9fbe4dc94d
more examples and some bug fixes
author | fazekasgy |
---|---|
date | Fri, 13 Jun 2008 17:28:22 +0000 |
parents | 1facebd0e9e9 |
children | 095df80af751 |
rev | line source |
---|---|
cannam@4 | 1 |
cannam@4 | 2 CXXFLAGS := -I../vamp-plugin-sdk -O2 -Wall -I/usr/include/python2.5 |
cannam@4 | 3 |
cannam@4 | 4 pyvamp.so: PyPlugin.o PyPlugScanner.o pyvamp-main.o Mutex.o |
cannam@4 | 5 g++ -shared $^ -o $@ -L../vamp-plugin-sdk/vamp-sdk -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython2.5 -lpthread |
cannam@4 | 6 |
cannam@4 | 7 clean: |
cannam@4 | 8 rm *.o |
cannam@4 | 9 |