annotate build/mingw32/Makefile.mingw32 @ 208:7eade513d470 msvc

Remove some unused bits
author Chris Cannam
date Tue, 30 Jan 2018 20:14:46 +0000
parents 53669635f18f
children
rev   line source
Chris@178 1
Chris@178 2 TOOLPREFIX ?= i586-mingw32msvc-
Chris@178 3 CXX = $(TOOLPREFIX)g++
Chris@178 4 CC = $(TOOLPREFIX)gcc
Chris@178 5 LD = $(TOOLPREFIX)g++
Chris@178 6 AR = $(TOOLPREFIX)ar
Chris@178 7 RANLIB = $(TOOLPREFIX)ranlib
Chris@178 8
Chris@178 9 CFLAGS := -I../vamp-plugin-sdk -Ibuild/mingw32 -Iinclude -DNDEBUG -O3 -msse -msse2 -Wall -Wextra
Chris@178 10 CXXFLAGS := $(CFLAGS)
Chris@178 11
Chris@178 12 MAKEFILE_EXT := .mingw32
Chris@178 13
Chris@178 14 include build/general/Makefile.inc