Makefile, anyone? :)

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1276 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Mark Olsen 2005-09-06 16:49:40 +00:00
parent 043e75872d
commit 64aa0c7af9
1 changed files with 14 additions and 0 deletions

14
fteqtv/Makefile Normal file
View File

@ -0,0 +1,14 @@
CC=gcc
STRIP=strip
CFLAGS=-Wall -O2
STRIPFLAGS=--strip-unneeded --remove-section=.comment
OBJS = netchan.o parse.o qw.o source.o
qtv: $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o $@.db -lm
$(STRIP) $(STRIPFLAGS) $@.db -o $@
clean:
rm -rf qtv qtv.db *.o