ioq3quest/code/tools/asm/Makefile
2005-10-04 19:15:34 +00:00

25 lines
393 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
CFLAGS=-O2 -Wall -Werror -fno-strict-aliasing
default: q3asm
q3asm: q3asm.c cmdlib.c
$(CC) $(CFLAGS) -o $@ $^
clean:
rm -f q3asm *~ *.o
install: default
install -s -m 0755 q3asm$(BINEXT) ../
uninstall:
-rm ../q3asm$(BINEXT)