ioq3quest/code/tools/asm/Makefile

32 lines
484 B
Makefile
Raw Normal View History

2005-08-26 17:39:27 +00:00
# yeah, couldn't do more simple really
2005-10-04 19:15:34 +00:00
PLATFORM=$(shell uname|sed -e s/_.*//|tr A-Z a-z)
ifeq ($(PLATFORM),mingw32)
BINEXT=.exe
else
BINEXT=
endif
ifeq ($(PLATFORM),SunOS)
INSTALL=ginstall
else
INSTALL=install
endif
2005-08-26 17:39:27 +00:00
CC=gcc
Q3ASM_CFLAGS=-O2 -Wall -Werror -fno-strict-aliasing
2005-08-26 17:39:27 +00:00
default: q3asm
q3asm: q3asm.c cmdlib.c
$(CC) $(Q3ASM_CFLAGS) -o $@ $^
2005-08-26 17:39:27 +00:00
clean:
rm -f q3asm *~ *.o
install: default
$(INSTALL) -s -m 0755 q3asm$(BINEXT) ../
uninstall:
rm -f ../q3asm$(BINEXT)