Files
scst/www/Makefile
T
Gleb Chesnokov f0b22d068b www: Fix broken website resources
Remove the obsolete Piwik integration that loads a project page as
JavaScript and breaks every top-level page.

Replace unavailable company logos with stable text links, remove the
unused tooltip code, and update the stale zero-copy reference. Make the
website check fail when tidy is unavailable or reports an error.
2026-08-21 19:58:59 +03:00

11 lines
238 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