Mercurial > hg > tipic
annotate Makefile.mingw32 @ 42:00b6ae41efbe
Update to use qm-dsp instead of files from constant-q-cpp and bqvec. Some of the classes here (e.g. DCT) have moved to qm-dsp in the meantime.
author | Chris Cannam |
---|---|
date | Wed, 07 Oct 2015 11:46:33 +0100 |
parents | a8ca8a90257c |
children | be9d268bcfac |
rev | line source |
---|---|
Chris@17 | 1 |
Chris@17 | 2 TOOLPREFIX ?= i586-mingw32msvc- |
Chris@17 | 3 CXX = $(TOOLPREFIX)g++ |
Chris@17 | 4 CC = $(TOOLPREFIX)gcc |
Chris@17 | 5 LD = $(TOOLPREFIX)g++ |
Chris@17 | 6 AR = $(TOOLPREFIX)ar |
Chris@17 | 7 RANLIB = $(TOOLPREFIX)ranlib |
Chris@17 | 8 |
Chris@17 | 9 CXXFLAGS := $(CXXFLAGS) -DUSE_OWN_ALIGNED_MALLOC -DNDEBUG -O3 -msse -msse2 -ffast-math -mfpmath=sse -Wall -Wextra -std=c++11 |
Chris@17 | 10 PLUGIN_LDFLAGS := $(LDFLAGS) -shared -static -Wl,--retain-symbols-file=vamp-plugin.list |
Chris@17 | 11 |
Chris@17 | 12 VAMPSDK_DIR := ../vamp-plugin-sdk |
Chris@17 | 13 PLUGIN_EXT := .dll |
Chris@17 | 14 |
Chris@17 | 15 MAKEFILE_EXT := .mingw32 |
Chris@17 | 16 |
Chris@17 | 17 include Makefile.inc |
Chris@17 | 18 |