view Makefile.mingw32 @ 349:071fd5e7b168 mirex2015

Be sure to emit offsets even after very short note-part
author Chris Cannam
date Wed, 12 Aug 2015 17:27:51 +0100
parents d632c9b9b858
children 50fde8eecba5
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 
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