Mercurial > hg > vampy
comparison Makefile.cc-mingw32 @ 19:a54850da8229
* Windows build (with mingw32 atm)
author | cannam |
---|---|
date | Mon, 13 Jul 2009 12:23:51 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
18:e9cf443b18f5 | 19:a54850da8229 |
---|---|
1 | |
2 CXX := i586-mingw32msvc-g++ | |
3 CXXFLAGS := -I../include -O2 -Wall -I../../Python26/include | |
4 | |
5 vampy.dll: PyPlugin.o PyPlugScanner.o pyvamp-main.o Mutex.o | |
6 i586-mingw32msvc-g++ -shared $^ -o $@ -L../lib -L../../Python26/libs -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython26 -Wl,--version-script=vamp-plugin.map | |
7 | |
8 clean: | |
9 rm *.o | |
10 |