lilium-voyager/q3asm/Makefile
Tim Angus c07dc8dbee * Dewarninged the lcc and q3asm source
* Removed traditional target platforms from the lcc build. This might break
  building lcc on Windows using nmake. Submit patches or be quiet :p
* Default target for lcc is now bytecode, so -Wf-target=bytecode is no longer
  needed on the lcc command line
2005-10-04 01:21:34 +00:00

13 lines
189 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