To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / Makefile.mingw32

History | View | Annotate | Download (329 Bytes)

1 34:8d3716a5d7e7 Chris
2
CXX	:= i486-mingw32-g++
3
CC	:= i486-mingw32-gcc
4
5
CFLAGS    := -Wall -O2
6
CXXFLAGS  := $(CFLAGS) -I../include
7
PLUGIN_LDFLAGS	  := -shared -L../lib -lvamp-sdk -Wl,-Bsymbolic -static-libgcc -Wl,--version-script=vamp-plugin.map -fno-exceptions $(shell $(CXX) -print-file-name=libstdc++.a)
8
9
PLUGIN_EXT   := .dll
10
11
include Makefile.inc