Mercurial > hg > vampy
annotate Makefile.mingw32 @ 69:f5b8646494d2
Metadata fixes
author | Chris Cannam |
---|---|
date | Mon, 17 Nov 2014 12:53:51 +0000 |
parents | 0df94e3f0fdb |
children | d8eaa10e153e |
rev | line source |
---|---|
cannam@44 | 1 |
cannam@44 | 2 CXX := i586-mingw32msvc-g++ |
cannam@44 | 3 CXXFLAGS := -I../include -O2 -Wall -I../../Python26/include |
cannam@44 | 4 |
cannam@44 | 5 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 |
Chris@65 | 6 i586-mingw32msvc-g++ -shared $^ -o $@ -L../lib -L../../Python26/libs -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython26 -Wl,--retain-symbols-file=vamp-plugin.list |
cannam@44 | 7 |
cannam@44 | 8 clean: |
cannam@44 | 9 rm *.o |
cannam@44 | 10 |