Mercurial > hg > vampy
comparison Makefile.mingw32 @ 76:d8eaa10e153e
Build fixes
author | Chris Cannam |
---|---|
date | Fri, 28 Nov 2014 15:28:31 +0000 |
parents | 0df94e3f0fdb |
children | 5e26aaba2eed |
comparison
equal
deleted
inserted
replaced
70:6c755f3e1173 | 76:d8eaa10e153e |
---|---|
1 | 1 |
2 CXX := i586-mingw32msvc-g++ | 2 TOOLPREFIX ?= i586-mingw32msvc- |
3 CXX = $(TOOLPREFIX)g++ | |
4 CC = $(TOOLPREFIX)gcc | |
5 LD = $(TOOLPREFIX)g++ | |
6 AR = $(TOOLPREFIX)ar | |
7 RANLIB = $(TOOLPREFIX)ranlib | |
3 CXXFLAGS := -I../include -O2 -Wall -I../../Python26/include | 8 CXXFLAGS := -I../include -O2 -Wall -I../../Python26/include |
4 | 9 |
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 | 10 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 |
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 | 11 i586-mingw32msvc-g++ -shared $^ -o $@ -L../lib -L../../Python26/libs -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython26 -Wl,--retain-symbols-file=vamp-plugin.list |
7 | 12 |
8 clean: | 13 clean: |
9 rm *.o | 14 rm -f *.o |
10 | 15 |