mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 06:32:00 +00:00
5a627ccb8e
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2732 fc73d0e0-1445-4013-8a0c-d673dee63da5
13 lines
197 B
Makefile
13 lines
197 B
Makefile
# yeah, couldn't do more simple really
|
|
|
|
CC=gcc
|
|
CFLAGS=-O3 -Wall
|
|
|
|
default: q3asm2
|
|
|
|
q3asm2: q3asm2.c ../engine/qclib/hash.c
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
clean:
|
|
rm -f q3asm2 q3asm *~ *.o
|
|
|