From 7c862eb6a2ee070344982adf321607e2ba0508a9 Mon Sep 17 00:00:00 2001 From: tma Date: Tue, 4 Oct 2005 19:15:34 +0000 Subject: * MinGW fixes to the tools Makefiles git-svn-id: svn://svn.icculus.org/quake3/trunk@137 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/tools/asm/Makefile | 11 +++++++++-- code/tools/lcc/makefile | 9 ++++++++- 2 files changed, 17 insertions(+), 3 deletions(-) (limited to 'code/tools') diff --git a/code/tools/asm/Makefile b/code/tools/asm/Makefile index 67bfbd4..ec314f1 100644 --- a/code/tools/asm/Makefile +++ b/code/tools/asm/Makefile @@ -1,5 +1,12 @@ # yeah, couldn't do more simple really +PLATFORM=$(shell uname|sed -e s/_.*//|tr A-Z a-z) +ifeq ($(PLATFORM),mingw32) + BINEXT=.exe +else + BINEXT= +endif + CC=gcc CFLAGS=-O2 -Wall -Werror -fno-strict-aliasing @@ -12,7 +19,7 @@ clean: rm -f q3asm *~ *.o install: default - install -s -m 0755 q3asm ../ + install -s -m 0755 q3asm$(BINEXT) ../ uninstall: - -rm ../q3asm + -rm ../q3asm$(BINEXT) diff --git a/code/tools/lcc/makefile b/code/tools/lcc/makefile index 178e86c..1c29f32 100644 --- a/code/tools/lcc/makefile +++ b/code/tools/lcc/makefile @@ -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= -- cgit v1.2.3