diff Makefile.mingw32 @ 44:2fbb37d50be5

* Makefile updates
author cannam
date Mon, 05 Oct 2009 13:54:40 +0000
parents
children 0df94e3f0fdb
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile.mingw32	Mon Oct 05 13:54:40 2009 +0000
@@ -0,0 +1,10 @@
+
+CXX	:= i586-mingw32msvc-g++
+CXXFLAGS	:= -I../include -O2 -Wall -I../../Python26/include
+
+vampy.dll:	PyPlugin.o PyPlugScanner.o vampy-main.o Mutex.o PyTypeInterface.o PyExtensionModule.o PyRealTime.o PyFeature.o PyParameterDescriptor.o PyOutputDescriptor.o PyFeatureSet.o  PyExtensionManager.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
+