Adding Makefile target test-all that also runs the BroControl test

suite.

Eventually "make test" should do this but let's trigger it separately
for now.
This commit is contained in:
Robin Sommer 2013-05-31 17:32:27 -07:00
parent 6d478bea57
commit 45f6f11e51

View file

@ -63,6 +63,9 @@ distclean:
test:
@( cd testing && make )
test-all: test
test -d aux/broctl && ( cd aux/broctl && make test )
configured:
@test -d $(BUILD) || ( echo "Error: No build/ directory found. Did you run configure?" && exit 1 )
@test -e $(BUILD)/Makefile || ( echo "Error: No build/Makefile found. Did you run configure?" && exit 1 )