diff --git a/FPWD.mk b/FPWD.mk deleted file mode 100644 index 01cc244..0000000 --- a/FPWD.mk +++ /dev/null @@ -1,18 +0,0 @@ -# http://wiki.whatwg.org/wiki/GitHub#Makefile - -ANOLIS = anolis -TIDY-HTML5 = tidy-html5 - -all: tidy releases/FPWD.html xrefs/presentation.json - -releases/FPWD.html: Overview.src.html ../xref Makefile - $(ANOLIS) --w3c-status=WD --w3c-compat-substitutions \ - --w3c-compat-crazy-substitutions --w3c-shortname="presentation-api" \ - --omit-optional-tags --quote-attr-values --enable=xspecxref \ - --xref="../xref" --enable=refs $< $@ - -xrefs/presentation.json: Overview.src.html Makefile - $(ANOLIS) --dump-xrefs=$@ $< /tmp/spec - -tidy: Overview.src.html build/tidyconfig.txt - $(TIDY-HTML5) -config build/tidyconfig.txt -o $< $< diff --git a/Makefile b/Makefile index 9c4bc4c..8254266 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,14 @@ TIDY-HTML5 = tidy-html5 all: tidy index.html xrefs/presentation.json +fpwd: tidy xrefs/presentation.json releases/FPWD.html + +releases/FPWD.html: Overview.src.html ../xref Makefile + $(ANOLIS) --w3c-status=WD --w3c-compat-substitutions \ + --w3c-compat-crazy-substitutions --w3c-shortname="presentation-api" \ + --omit-optional-tags --quote-attr-values --enable=xspecxref \ + --xref="../xref" --enable=refs $< $@ + index.html: Overview.src.html ../xref Makefile $(ANOLIS) --w3c-status=ED --w3c-compat-substitutions \ --omit-optional-tags --quote-attr-values --enable=xspecxref \