annotate build/mingw32/Makefile.mingw32 @ 499:af5b7ef02aa7
Style fixes: avoid unsigned, fix formatting
| author |
Chris Cannam <cannam@all-day-breakfast.com> |
| date |
Mon, 03 Jun 2019 14:20:39 +0100 |
| parents |
cf08ede39abf |
| children |
|
| rev |
line source |
|
c@403
|
1
|
|
c@403
|
2 TOOLPREFIX ?= i586-mingw32msvc-
|
|
c@403
|
3 CXX = $(TOOLPREFIX)g++
|
|
c@403
|
4 CC = $(TOOLPREFIX)gcc
|
|
c@403
|
5 LD = $(TOOLPREFIX)g++
|
|
c@403
|
6 AR = $(TOOLPREFIX)ar
|
|
c@403
|
7 RANLIB = $(TOOLPREFIX)ranlib
|
|
c@403
|
8
|
|
c@403
|
9 CFLAGS := -I../vamp-plugin-sdk -Ibuild/mingw32 -Iinclude -DNDEBUG -O3 -msse -msse2 -Wall -Wextra
|
|
c@403
|
10 CXXFLAGS := $(CFLAGS)
|
|
c@403
|
11
|
|
c@403
|
12 MAKEFILE_EXT := .mingw32
|
|
c@403
|
13
|
|
c@403
|
14 include build/general/Makefile.inc
|