summaryrefslogtreecommitdiff
path: root/javascript/WebIDL/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-11-04 16:15:00 +0000
committerVincent Sanders <vince@kyllikki.org>2015-11-04 16:15:00 +0000
commitb54174e54a7f55cb6e11b6fb20f6615b37f5b65a (patch)
treec1f29af37eae95b6b9e7dd58c47b9bcb03887a2b /javascript/WebIDL/Makefile
parenta7324d39a46a561535dcb26fac3fbd8f593dbf94 (diff)
downloadnetsurf-b54174e54a7f55cb6e11b6fb20f6615b37f5b65a.tar.gz
netsurf-b54174e54a7f55cb6e11b6fb20f6615b37f5b65a.tar.bz2
Add CSS object model and DOM parsing IDL ready for implementation
Diffstat (limited to 'javascript/WebIDL/Makefile')
-rw-r--r--javascript/WebIDL/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/javascript/WebIDL/Makefile b/javascript/WebIDL/Makefile
index 6319bbddd..7d901cee1 100644
--- a/javascript/WebIDL/Makefile
+++ b/javascript/WebIDL/Makefile
@@ -16,12 +16,13 @@
.PHONY:all clean
-all: dom.idl html.idl uievents.idl
+all: dom.idl html.idl uievents.idl cssom.idl
-.INTERMEDIATE:dom-spec.html dom-spec.xml dom-idl.html
+.INTERMEDIATE:dom-spec.html dom-spec.xml dom-idl.html
.INTERMEDIATE:html-spec.html html-spec.xml html-idl.html
.INTERMEDIATE:uievents-spec.html uievents-spec.xml uievents-idl.html
.INTERMEDIATE:urlutils-spec.html urlutils-spec.xml urlutils-idl.html
+.INTERMEDIATE:cssom-spec.html cssom-spec.xml cssom-idl.html
dom-spec.html:
curl -s https://dom.spec.whatwg.org/ -o $@
@@ -35,8 +36,11 @@ uievents-spec.html:
urlutils-spec.html:
curl -s https://url.spec.whatwg.org/ -o $@
+cssom-spec.html:
+ curl -s https://drafts.csswg.org/cssom-1/ -o $@
+
%-spec.xml: %-spec.html
- -tidy -q -f $@.errors --new-blocklevel-tags header,hgroup,figure,time,main,nav,svg,rect,text,image,mark,figcaption,section -o $@ -asxml $<
+ -tidy -q -f $@.errors --new-blocklevel-tags header,hgroup,figure,time,main,nav,svg,rect,text,image,mark,figcaption,section,g,path,circle -o $@ -asxml $<
%-idl.html: %-spec.xml
hxselect 'pre[class="idl"]' < $< > $@