zeek/testing/external/Makefile
Christian Kreibich b999448e3d Minor updates to the external-testsuite scripts
Delete the unused Baseline folder, remove a Bro-era name from gitignore,
change create-new-repo to work with a second argument that is actually
a URL, and tweak whitespace. Expand description in README and update the
explanation of OPENSSL_ENABLE_MD5_VERIFY in subdir-btest.cfg.
2021-09-01 17:29:40 -07:00

33 lines
825 B
Makefile

PUBLIC_REPO=https://github.com/zeek/zeek-testing
REPOS=`./scripts/find-git-repos`
DIAG=diag.log
all:
@rm -f $(DIAG)
@for repo in $(REPOS); do (cd $$repo && make -s ); done
brief:
@rm -f $(DIAG)
@for repo in $(REPOS); do (cd $$repo && make -s brief ); done
init:
git clone $(PUBLIC_REPO)
pull:
@for repo in $(REPOS); do ( cd $$repo && git pull ); done
push:
@for repo in $(REPOS); do ( cd $$repo && git push origin HEAD ); done
status:
@for repo in $(REPOS); do ( cd $$repo && echo '>>' $$repo && git status -bs && echo ); done
coverage:
@for repo in $(REPOS); do (cd $$repo && echo "Coverage for '$$repo' repo:" && make coverage); done
update-timing:
@for repo in $(REPOS); do (cd $$repo && echo "Coverage for '$$repo' repo:" && make update-timing); done
.PHONY: all brief init pull push status coverage