mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
11 lines
240 B
Makefile
11 lines
240 B
Makefile
|
|
PUBLIC_REPO=git://git.bro-ids.org/bro-testing
|
|
|
|
all:
|
|
@for repo in *.git; do (echo "==== $$repo" && cd $$repo && btest ); echo; done
|
|
|
|
init:
|
|
git clone $(PUBLIC_REPO) public.git
|
|
|
|
pull:
|
|
@for repo in *.git; do ( cd $$repo && git pull ); done
|