Skip to content

Commit 6d5dc4a

Browse files
committed
Web Animations CSS Integration specification - initial commit
1 parent 212391c commit 6d5dc4a

File tree

3 files changed

+1274
-0
lines changed

3 files changed

+1274
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)