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:
parent
043e75872d
commit
64aa0c7af9
1 changed files with 14 additions and 0 deletions
14
fteqtv/Makefile
Normal file
14
fteqtv/Makefile
Normal 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
|
Loading…
Reference in a new issue