css-text-decor-3/Makefile

Thu, 07 Feb 2013 22:55:02 -0800

author
L. David Baron <dbaron@dbaron.org>
date
Thu, 07 Feb 2013 22:55:02 -0800
changeset 7399
45007c88f5c7
permissions
-rw-r--r--

[css-text-decor-3] Add "Animatable:" lines to propdef tables, and change the Computed Value: line for the 'text-decoration' shorthand to "see individual properties".

The Animatable lines are as resolved in Tucson face-to-face at
2013-02-04 11:40:47 -0700, and edited by me per discussion starting at
2013-02-05 11:11:38 -0700.

dbaron@7399 1 # Calling the post-processor with file-upload. Assumes the username
dbaron@7399 2 # and password are in ~/.curl-w3.org
dbaron@7399 3 #
dbaron@7399 4 # Possible other options:
dbaron@7399 5 # -F date=YYYY-MM-DD
dbaron@7399 6 # -F ids=on
dbaron@7399 7
dbaron@7399 8 %.html: %.src.html
dbaron@7399 9 @echo "Calling post-processor to generate $@..."
dbaron@7399 10 @curl -F file=@$< -F group=CSS -F output=html -F method=file -s -K ~/.curl-w3.org https://www.w3.org/Style/Group/process.cgi >$@
dbaron@7399 11 %.err: %.src.html
dbaron@7399 12 @echo "Calling post-processor to check $<..."
dbaron@7399 13 @curl -F file=@$< -F group=CSS -F output=err -F method=file -s -K ~/.curl-w3.org https://www.w3.org/Style/Group/process.cgi >$@
dbaron@7399 14
dbaron@7399 15
dbaron@7399 16
dbaron@7399 17 all: check Overview.html
dbaron@7399 18 @echo Done.
dbaron@7399 19
dbaron@7399 20 check: Overview.err
dbaron@7399 21 @cat $<
dbaron@7399 22 @grep -q '^No errors$$' $< # Force a non-zero exit code if errors
dbaron@7399 23
dbaron@7399 24
dbaron@7399 25
dbaron@7399 26 # A handy shortcut:
dbaron@7399 27
dbaron@7399 28 clean:
dbaron@7399 29 rm Overview.html
dbaron@7399 30
dbaron@7399 31
dbaron@7399 32
dbaron@7399 33 .PHONY: check clean

mercurial