changeset 61:0df6322d83bb

merge
author matthiasm
date Thu, 13 Jun 2013 16:39:46 +0100
parents b536a23b8523 (current diff) 4560e4722fe5 (diff)
children 8bd9b79c9e83
files
diffstat 2 files changed, 15 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.inc	Thu Jun 13 16:38:04 2013 +0100
+++ b/Makefile.inc	Thu Jun 13 16:39:46 2013 +0100
@@ -4,8 +4,9 @@
 CXX	?= g++
 CC	?= gcc
 
-CFLAGS		:= $(CFLAGS) -I. -Ivamp-plugin-sdk -Iqm-dsp -Iarmadillo-3.900.4/include
-CXXFLAGS	:= $(CXXFLAGS) $(CFLAGS)
+INCLUDEFLAGS	:= -I. -Ivamp-plugin-sdk -Iqm-dsp -Iarmadillo-3.900.4/include
+CFLAGS		:= $(CFLAGS) $(INCLUDEFLAGS)
+CXXFLAGS	:= $(CXXFLAGS) $(INCLUDEFLAGS)
 LDFLAGS		:= $(LDFLAGS)
 
 HEADERS := segmentino/Segmentino.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile.mingw32	Thu Jun 13 16:39:46 2013 +0100
@@ -0,0 +1,12 @@
+
+CXX	:= i486-mingw32-g++
+CC	:= i486-mingw32-gcc
+
+CFLAGS    := -Wall -O2
+CXXFLAGS  := $(CFLAGS) -Iboost_1_53_0
+LDFLAGS	  := -shared -Wl,-Bsymbolic -static-libgcc -Wl,--version-script=segmentino/vamp-plugin.map -fno-exceptions $(shell $(CXX) -print-file-name=libstdc++.a)
+
+PLUGIN_EXT   := .dll
+
+include Makefile.inc
+