diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-10-04 15:18:22 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-10-04 15:18:22 +0000 |
commit | 1c7864f6d4380797b07c7149111066b61f69f689 (patch) | |
tree | 59057c26f97fdf846b0193e852eeea7e707a9e20 /code/tools/q3asm/Makefile | |
parent | 91db83f0cc7c564ff6c853eeb4e790732dae81cd (diff) | |
download | ioquake3-aero-1c7864f6d4380797b07c7149111066b61f69f689.tar.gz ioquake3-aero-1c7864f6d4380797b07c7149111066b61f69f689.zip |
* Moved lcc and q3asm into code/tools
git-svn-id: svn://svn.icculus.org/quake3/trunk@134 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/tools/q3asm/Makefile')
-rw-r--r-- | code/tools/q3asm/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/code/tools/q3asm/Makefile b/code/tools/q3asm/Makefile new file mode 100644 index 0000000..504bcdd --- /dev/null +++ b/code/tools/q3asm/Makefile @@ -0,0 +1,13 @@ +# 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 + |