Mercurial > hg > vampy
changeset 4:1facebd0e9e9
* my makefile
author | cannam |
---|---|
date | Fri, 14 Mar 2008 12:02:27 +0000 |
parents | 134313c59d82 |
children | 6ed5ebd38fde |
files | Makefile.cc-linux |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile.cc-linux Fri Mar 14 12:02:27 2008 +0000 @@ -0,0 +1,9 @@ + +CXXFLAGS := -I../vamp-plugin-sdk -O2 -Wall -I/usr/include/python2.5 + +pyvamp.so: PyPlugin.o PyPlugScanner.o pyvamp-main.o Mutex.o + g++ -shared $^ -o $@ -L../vamp-plugin-sdk/vamp-sdk -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython2.5 -lpthread + +clean: + rm *.o +