We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6e2a88 commit 5354fa3Copy full SHA for 5354fa3
1 file changed
css3-flexbox/Makefile
@@ -1,17 +1,22 @@
1
# Calling the post-processor with file-upload. Assumes the username
2
# and password are in ~/.curl-w3.org
3
#
4
+# To set a date other than today, use: make cdate=YYYYMMDD
5
+#
6
# Possible other options:
-# -F date=YYYY-MM-DD
7
# -F ids=on
8
9
+cdate = $(shell date +%Y%m%d)
10
+
11
%.html: %.src.html
12
@echo "Calling post-processor to generate $@..."
13
@curl --basic -F file=@$< -F group=CSS -F output=html -F method=file -s \
14
+ -F date=$(cdate) \
15
-K ~/.curl-w3.org http://cgi.w3.org/member-bin/process.cgi >$@
16
%.err: %.src.html
17
@echo "Calling post-processor to check $<..."
18
@curl --basic -F file=@$< -F group=CSS -F output=err -F method=file -s \
19
20
21
22
0 commit comments