Mercurial > hg > vampy
diff Makefile.cc-mingw32 @ 19:a54850da8229
* Windows build (with mingw32 atm)
author | cannam |
---|---|
date | Mon, 13 Jul 2009 12:23:51 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile.cc-mingw32 Mon Jul 13 12:23:51 2009 +0000 @@ -0,0 +1,10 @@ + +CXX := i586-mingw32msvc-g++ +CXXFLAGS := -I../include -O2 -Wall -I../../Python26/include + +vampy.dll: PyPlugin.o PyPlugScanner.o pyvamp-main.o Mutex.o + i586-mingw32msvc-g++ -shared $^ -o $@ -L../lib -L../../Python26/libs -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython26 -Wl,--version-script=vamp-plugin.map + +clean: + rm *.o +