We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba1779b commit c5af876Copy full SHA for c5af876
1 file changed
css-regions/Makefile
@@ -1,3 +1,16 @@
1
# use this command line now, or a local bikeshed
2
3
-# curl http://api.csswg.org/bikeshed/ -F file=@Overview.src.html > Overview.html
+# curl http://api.csswg.org/bikeshed/ -F file=@Overview.src.html > Overview.html
4
+
5
+%.html: %.src.html
6
+ curl -s -L -F file=@$< -F time=$(cdate) -F output=html \
7
+ -F paragraph=$(markup) $(opts) -o $@ http://api.csswg.org/bikeshed/
8
+%.err: %.src.html
9
+ curl -s -L -F file=@$< -F time=$(cdate) -F output=err \
10
+ -F paragraph=$(markup) $(opts) http://api.csswg.org/bikeshed/ >$@
11
12
+all: check Overview.html
13
14
+check: Overview.err
15
+ @if test -s $<; then false; else true; fi
16
+ @cat $<
0 commit comments