Mercurial > hg > tipic
view Makefile.mingw32 @ 47:d15a1fc7ebbc
Naming and descriptions; bump version to 1
author | Chris Cannam |
---|---|
date | Tue, 20 Sep 2016 12:12:50 +0100 |
parents | a8ca8a90257c |
children | be9d268bcfac |
line wrap: on
line source
TOOLPREFIX ?= i586-mingw32msvc- CXX = $(TOOLPREFIX)g++ CC = $(TOOLPREFIX)gcc LD = $(TOOLPREFIX)g++ AR = $(TOOLPREFIX)ar RANLIB = $(TOOLPREFIX)ranlib CXXFLAGS := $(CXXFLAGS) -DUSE_OWN_ALIGNED_MALLOC -DNDEBUG -O3 -msse -msse2 -ffast-math -mfpmath=sse -Wall -Wextra -std=c++11 PLUGIN_LDFLAGS := $(LDFLAGS) -shared -static -Wl,--retain-symbols-file=vamp-plugin.list VAMPSDK_DIR := ../vamp-plugin-sdk PLUGIN_EXT := .dll MAKEFILE_EXT := .mingw32 include Makefile.inc