mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-14 00:10:39 +00:00
e414f46c4d
* Moved the q3asm dir to asm so that is doesn't clash with the binary when installed
18 lines
262 B
Makefile
18 lines
262 B
Makefile
# yeah, couldn't do more simple really
|
|
|
|
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 ../
|
|
|
|
uninstall:
|
|
-rm ../q3asm
|