17 lines
352 B
Makefile
17 lines
352 B
Makefile
|
|
PY := python3
|
||
|
|
TOOLS := tools
|
||
|
|
|
||
|
|
.PHONY: help register check
|
||
|
|
|
||
|
|
help:
|
||
|
|
@echo "make register - rebuild REGISTER.md from findings/"
|
||
|
|
@echo "make check - verify the index is current, then report what is going quiet"
|
||
|
|
|
||
|
|
register:
|
||
|
|
@$(PY) $(TOOLS)/register_index.py
|
||
|
|
|
||
|
|
check:
|
||
|
|
@$(PY) $(TOOLS)/register_index.py --check
|
||
|
|
@echo
|
||
|
|
@$(PY) $(TOOLS)/register_check.py
|