mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-12 07:34:31 +00:00
490c84d907
* Added -m option to q3asm to write a map file (which is now disabled by default) * q3asm now returns an error code on failure
25 lines
405 B
Makefile
25 lines
405 B
Makefile
# 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
|
|
Q3ASM_CFLAGS=-O2 -Wall -Werror -fno-strict-aliasing
|
|
|
|
default: q3asm
|
|
|
|
q3asm: q3asm.c cmdlib.c
|
|
$(CC) $(Q3ASM_CFLAGS) -o $@ $^
|
|
|
|
clean:
|
|
rm -f q3asm *~ *.o
|
|
|
|
install: default
|
|
install -s -m 0755 q3asm$(BINEXT) ../
|
|
|
|
uninstall:
|
|
-rm ../q3asm$(BINEXT)
|