summaryrefslogtreecommitdiff
path: root/Makefile.sources.javascript
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2012-10-31 01:22:35 +0000
committerVincent Sanders <vince@kyllikki.org>2012-10-31 01:22:35 +0000
commitede48d60748101e9795050955d934ea6e329d4c5 (patch)
treea524b6e88bd8b0280b5c1b25b048a5619fc39838 /Makefile.sources.javascript
parent79e557bbe83845df21575b525ea8aadbea29f6ce (diff)
downloadnetsurf-ede48d60748101e9795050955d934ea6e329d4c5.tar.gz
netsurf-ede48d60748101e9795050955d934ea6e329d4c5.tar.bz2
add navigator interface
Diffstat (limited to 'Makefile.sources.javascript')
-rw-r--r--Makefile.sources.javascript5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.sources.javascript b/Makefile.sources.javascript
index e188df6c1..626854869 100644
--- a/Makefile.sources.javascript
+++ b/Makefile.sources.javascript
@@ -12,6 +12,7 @@ S_JSAPI_BINDING:=
JSAPI_BINDING_htmldocument := javascript/jsapi/bindings/htmldocument.bnd
JSAPI_BINDING_window := javascript/jsapi/bindings/window.bnd
+JSAPI_BINDING_navigator := javascript/jsapi/bindings/navigator.bnd
# 1: input file
# 2: output file
@@ -29,8 +30,8 @@ endef
# Javascript sources
ifeq ($(NETSURF_USE_JS),YES)
-S_JSAPI = navigator.c console.c htmlelement.c
-#htmldocument.c window.c
+S_JSAPI = console.c htmlelement.c
+#htmldocument.c window.c navigator.c
S_JAVASCRIPT += content.c jsapi.c $(addprefix jsapi/,$(S_JSAPI))