mirror of
https://github.com/id-Software/Quake-III-Arena.git
synced 2026-03-20 00:49:37 +01:00
The Quake III Arena sources as originally released under the GPL license on August 20, 2005.
This commit is contained in:
13
q3asm/Makefile
Normal file
13
q3asm/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
# yeah, couldn't do more simple really
|
||||
|
||||
CC=gcc
|
||||
CFLAGS=-g -Wall
|
||||
|
||||
default: q3asm
|
||||
|
||||
q3asm: q3asm.c cmdlib.c
|
||||
$(CC) $(CFLAGS) -o $@ $^
|
||||
|
||||
clean:
|
||||
rm -f q3asm *~ *.o
|
||||
|
||||
Reference in New Issue
Block a user