mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00

The traces for external test-suites are no longer kept inside the repositories themselves but downloaded separately via curl. This is because git is pretty bad at dealing with large files. See the README for more information.
14 lines
216 B
Makefile
14 lines
216 B
Makefile
|
|
DIAG=diag.log
|
|
BTEST=../../../aux/btest/btest
|
|
|
|
all: update-traces
|
|
@rm -f $(DIAG)
|
|
@$(BTEST) -f $(DIAG)
|
|
|
|
brief: update-traces
|
|
@rm -f $(DIAG)
|
|
@$(BTEST) -b -f $(DIAG)
|
|
|
|
update-traces:
|
|
../scripts/update-traces Traces
|