
# List any HTML files for which there are recipes that
# should be build for "all" and deleted during cleaning.
HTMLTARGETS=index.html

# List any other files for which there are recipes that
# should be built for "all" and deleted during cleaning.
FILETARGETS=index.web

# Phony targets.  These are built for "all" but excluded
# from deletion during cleaning.
PHONYTARGETS=

include ${WEBBASE}/Include/Makefile.inc

# A list of files or directories that should be ignored.
# They should not be built or recursed into.
# Tell Tidy to ignore proprietary attributes (needed for
# some social media integrations).
# TIDY_OPTIONS=--warn-proprietary-attributes no

# Set TIDY_TOLERATE_WARNINGS to 1 to ignore HTML Tidy warnings
# TIDY_TOLERATE_WARNINGS=1

# Set VALIDATE to false to disable Validator.Nu validation
# VALIDATOR=false

.PHONY: index.web
index.web:
	${WEBBASE}/Include/bin/buildindex -o $@ -m -D

