Skip to content

Commit c09a5e5

Browse files
authored
Merge pull request w3c#43 from WICG/spec-wip
Initial draft of AnimationWorklet spec.
2 parents 1473133 + c81ede8 commit c09a5e5

File tree

3 files changed

+3345
-38
lines changed

3 files changed

+3345
-38
lines changed

Makefile

+20
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=index.bs
8+
OUTPUTFILE=index.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)