* MinGW fixes to the tools Makefiles

This commit is contained in:
Tim Angus 2005-10-04 19:15:34 +00:00
parent e414f46c4d
commit 12b5f3bded
2 changed files with 17 additions and 3 deletions

View file

@ -3,7 +3,14 @@ HOSTFILE=etc/linux.c
TEMPDIR=/tmp
A=.a
O=.o
E=
PLATFORM=$(shell uname|sed -e s/_.*//|tr A-Z a-z)
ifeq ($(PLATFORM),mingw32)
E=.exe
else
E=
endif
CC=gcc
CFLAGS=-O2 -Wall -fno-strict-aliasing
LDFLAGS=