Mercurial > hg > silvet
annotate Makefile.mingw32 @ 282:f9023a87072d
Fix typo
author | Chris Cannam |
---|---|
date | Wed, 06 Aug 2014 17:42:52 +0100 |
parents | 8e94604ccff2 |
children | 92869203036f |
rev | line source |
---|---|
Chris@280 | 1 |
Chris@280 | 2 TOOLPREFIX ?= i586-mingw32msvc- |
Chris@280 | 3 CXX = $(TOOLPREFIX)g++ |
Chris@280 | 4 CC = $(TOOLPREFIX)gcc |
Chris@280 | 5 LD = $(TOOLPREFIX)g++ |
Chris@280 | 6 AR = $(TOOLPREFIX)ar |
Chris@280 | 7 RANLIB = $(TOOLPREFIX)ranlib |
Chris@280 | 8 |
Chris@280 | 9 CXXFLAGS := $(CXXFLAGS) -DNDEBUG -O3 -msse -msse2 -ffast-math -mfpmath=sse -Wall -Wextra |
Chris@282 | 10 PLUGIN_LDFLAGS := $(LDFLAGS) -shared -static -Wl,--retain-symbols-file=vamp-plugin.list |
Chris@280 | 11 |
Chris@280 | 12 VAMPSDK_DIR := ../vamp-plugin-sdk |
Chris@280 | 13 PLUGIN_EXT := .dll |
Chris@280 | 14 |
Chris@280 | 15 MAKEFILE_EXT := .mingw32 |
Chris@280 | 16 |
Chris@280 | 17 include Makefile.inc |
Chris@280 | 18 |