view Makefile.mingw32 @ 319:c37da62ba4e5 livemode

Add onsets output (lower-latency than the notes output)
author Chris Cannam
date Wed, 29 Apr 2015 09:27:38 +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