We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dfa8da commit 0adf3d5Copy full SHA for 0adf3d5
1 file changed
css-transforms-1/Makefile
@@ -0,0 +1,17 @@
1
+# FIXME: New documentation needed.
2
+#
3
+# Use "make REMOTE=1" to use remote bikeshed
4
+
5
+SOURCEFILE=Overview.bs
6
+OUTPUTFILE=Overview.html
7
+PREPROCESSOR=bikeshed.py
8
+REMOTE_PREPROCESSOR_URL=https://api.csswg.org/bikeshed/
9
10
+all: $(OUTPUTFILE)
11
12
+$(OUTPUTFILE): $(SOURCEFILE)
13
+ifneq (,$(REMOTE))
14
+ curl $(REMOTE_PREPROCESSOR_URL) -F file=@$(SOURCEFILE) > "$@"
15
+else
16
+ $(PREPROCESSOR) -f spec "$<" "$@"
17
+endif
0 commit comments