mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-13 16:07:28 +00:00
c5bdb034f2
* Note this patch also splits USE_SDL into USE_SDL_VIDEO and USE_SDL_AUDIO
31 lines
484 B
Makefile
31 lines
484 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
|
|
|
|
ifeq ($(PLATFORM),SunOS)
|
|
INSTALL=ginstall
|
|
else
|
|
INSTALL=install
|
|
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 -f ../q3asm$(BINEXT)
|