mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-29 12:17:15 +00:00
Fail the QLogic documentation check when tidy is unavailable or any HTML file does not validate. Mark both HTML check targets as phony so a file named check cannot silently suppress validation.
13 lines
253 B
Makefile
13 lines
253 B
Makefile
check:
|
|
@command -v tidy >/dev/null 2>&1 || { \
|
|
echo "Error: tidy is required to check the website." >&2; \
|
|
exit 1; \
|
|
}
|
|
@status=0; \
|
|
for f in $$(find . -name '*.html'); do \
|
|
tidy -e "$$f" || status=$$?; \
|
|
done; \
|
|
exit $$status
|
|
|
|
.PHONY: check
|