mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-31 12:00:38 +00:00
Merge branch 'master' of git://github.com/graphitemaster/gmqcc
This commit is contained in:
commit
e59d50ee5d
1 changed files with 11 additions and 4 deletions
15
Makefile
15
Makefile
|
@ -98,17 +98,24 @@ all: $(GMQCC) $(QCVM) $(TESTSUITE)
|
|||
check: all
|
||||
@ ./$(TESTSUITE)
|
||||
|
||||
# alias to check because test.o exists and people will get confused
|
||||
# about the undefined references to X.
|
||||
test: check
|
||||
|
||||
clean:
|
||||
rm -f *.o $(GMQCC) $(QCVM) $(TESTSUITE) *.dat
|
||||
|
||||
splint:
|
||||
@ ./splint.sh
|
||||
|
||||
depend:
|
||||
makedepend -Y -w 65536 \
|
||||
@makedepend -Y -w 65536 2> /dev/null \
|
||||
$(subst .o,.c,$(OBJ_D))
|
||||
makedepend -a -Y -w 65536 \
|
||||
@makedepend -a -Y -w 65536 2> /dev/null \
|
||||
$(subst .o,.c,$(OBJ_T))
|
||||
makedepend -a -Y -w 65536 \
|
||||
@makedepend -a -Y -w 65536 2> /dev/null \
|
||||
$(subst .o,.c,$(OBJ_C))
|
||||
makedepend -a -Y -w 65536 \
|
||||
@makedepend -a -Y -w 65536 2> /dev/null \
|
||||
$(subst .o,.c,$(OBJ_X))
|
||||
|
||||
#install rules
|
||||
|
|
Loading…
Reference in a new issue