mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00

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.
33 lines
825 B
Makefile
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
|