We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212391c commit 6d5dc4aCopy full SHA for 6d5dc4a
web-animations-css-integration/Makefile
@@ -0,0 +1,20 @@
1
+# $Id: Makefile,v 1.5 2008/02/06 14:05:15 mike Exp $
2
+#
3
+# FIXME: New documentation needed.
4
5
+# Use "make REMOTE=1" to use remote bikeshed
6
+
7
+SOURCEFILE=Overview.src.html
8
+OUTPUTFILE=Overview.html
9
+PREPROCESSOR=bikeshed.py
10
+REMOTE_PREPROCESSOR_URL=https://api.csswg.org/bikeshed/
11
12
+all: $(OUTPUTFILE)
13
14
+$(OUTPUTFILE): $(SOURCEFILE)
15
+ifneq (,$(REMOTE))
16
+ curl $(REMOTE_PREPROCESSOR_URL) -F file=@$(SOURCEFILE) > "$@"
17
+else
18
+ $(PREPROCESSOR) -f spec "$<" "$@"
19
+endif
20
0 commit comments