view Makefile.cc-mingw32 @ 29:e80caada79a8

* Remove nonportable and unnecessary opendir features test (originally inherited from the Vamp SDK's implementation of a similar plugin lookup, but it's been gone from the SDK for ages now) * Comment out some excessive debug output
author cannam
date Tue, 22 Sep 2009 15:20:44 +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