view Makefile.cc-mingw32 @ 35:2ba482378038 vampy2

* Fix compile error with VC++. I am totally at a loss to explain why this should have compiled with any other compiler! * Update VC project file. This code does now build with VC++ without HAVE_NUMPY -- I haven't installed Numpy yet
author cannam
date Thu, 24 Sep 2009 08:52:04 +0000
parents a54850da8229
children
line wrap: on
line source

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