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.

     1 # Calling the post-processor with file-upload. Assumes the username
     2 # and password are in ~/.curl-w3.org
     3 #
     4 # Possible other options:
     5 # -F date=YYYY-MM-DD
     6 # -F ids=on
     8 %.html: %.src.html
     9 	@echo "Calling post-processor to generate $@..."
    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 >$@
    11 %.err: %.src.html
    12 	@echo "Calling post-processor to check $<..."
    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 >$@
    17 all: check Overview.html
    18 	@echo Done.
    20 check: Overview.err
    21 	@cat $<
    22 	@grep -q '^No errors$$' $< # Force a non-zero exit code if errors
    26 # A handy shortcut:
    28 clean:
    29 	rm Overview.html
    33 .PHONY: check clean

mercurial