From 5a627ccb8e141e7c80e23a8e7b4b52afcacbedbf Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 8 Oct 2007 14:51:17 +0000 Subject: [PATCH] Removed old code, added a request for gcc to optimise a bit. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2732 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- q3asm2/Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/q3asm2/Makefile b/q3asm2/Makefile index 26c143ee..5f510538 100644 --- a/q3asm2/Makefile +++ b/q3asm2/Makefile @@ -1,13 +1,10 @@ # yeah, couldn't do more simple really CC=gcc -CFLAGS=-g -Wall +CFLAGS=-O3 -Wall default: q3asm2 -q3asm: q3asm.c cmdlib.c - $(CC) $(CFLAGS) -o $@ $^ - q3asm2: q3asm2.c ../engine/qclib/hash.c $(CC) $(CFLAGS) -o $@ $^