Makefile: Add check target
Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
parent
c1360e3b48
commit
8804a8c0d3
4
Makefile
4
Makefile
|
|
@ -77,6 +77,7 @@ help:
|
||||||
@echo " clean - remove products of build"
|
@echo " clean - remove products of build"
|
||||||
@echo " distclean - remove configuration and build"
|
@echo " distclean - remove configuration and build"
|
||||||
@echo " install - install binaries on local machine"
|
@echo " install - install binaries on local machine"
|
||||||
|
@echo " check - run tests"
|
||||||
@echo " cscope - build cscope database"
|
@echo " cscope - build cscope database"
|
||||||
@echo " snapshot - generate version number header"
|
@echo " snapshot - generate version number header"
|
||||||
@echo ""
|
@echo ""
|
||||||
|
|
@ -118,6 +119,9 @@ clobber:
|
||||||
|
|
||||||
distclean: clobber
|
distclean: clobber
|
||||||
|
|
||||||
|
check:
|
||||||
|
cd testsuite && $(MAKE) && $(MAKE) alltests
|
||||||
|
|
||||||
cscope:
|
cscope:
|
||||||
cscope -b -q -R -Iinclude -sip -slib -smisc -snetem -stc
|
cscope -b -q -R -Iinclude -sip -slib -smisc -snetem -stc
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue