zeek/testing/external/Makefile
2011-06-25 21:06:19 -07:00

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