mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 05:31:29 +00:00
* Applied q3asm-turbo patches from http://www.icculus.org/~phaethon/q3/q3asm-turbo/q3asm-turbo.html
* Added -m option to q3asm to write a map file (which is now disabled by default) * q3asm now returns an error code on failure
This commit is contained in:
parent
9d41e17e1f
commit
490c84d907
2 changed files with 1077 additions and 20 deletions
|
@ -8,12 +8,12 @@ else
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CC=gcc
|
CC=gcc
|
||||||
CFLAGS=-O2 -Wall -Werror -fno-strict-aliasing
|
Q3ASM_CFLAGS=-O2 -Wall -Werror -fno-strict-aliasing
|
||||||
|
|
||||||
default: q3asm
|
default: q3asm
|
||||||
|
|
||||||
q3asm: q3asm.c cmdlib.c
|
q3asm: q3asm.c cmdlib.c
|
||||||
$(CC) $(CFLAGS) -o $@ $^
|
$(CC) $(Q3ASM_CFLAGS) -o $@ $^
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f q3asm *~ *.o
|
rm -f q3asm *~ *.o
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue