mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-19 18:52:39 +03:00
ce32141057
by splitting javascript engine specific makefiles and source up we avoid having to consider old JSAPI or none code while working on duktape.
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
#
|
|
# NetSurf javascript source file inclusion
|
|
#
|
|
# Included by javascript/Makefile
|
|
#
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# JSAPI binding
|
|
# ----------------------------------------------------------------------------
|
|
|
|
D_JSAPI_BINDING:=
|
|
|
|
JSAPI_BINDING_htmldocument := javascript/jsapi/htmldocument.bnd
|
|
JSAPI_BINDING_htmlelement := javascript/jsapi/htmlelement.bnd
|
|
JSAPI_BINDING_window := javascript/jsapi/window.bnd
|
|
JSAPI_BINDING_navigator := javascript/jsapi/navigator.bnd
|
|
JSAPI_BINDING_console := javascript/jsapi/console.bnd
|
|
JSAPI_BINDING_location := javascript/jsapi/location.bnd
|
|
JSAPI_BINDING_htmlcollection := javascript/jsapi/htmlcollection.bnd
|
|
JSAPI_BINDING_nodelist := javascript/jsapi/nodelist.bnd
|
|
JSAPI_BINDING_text := javascript/jsapi/text.bnd
|
|
JSAPI_BINDING_comment := javascript/jsapi/comment.bnd
|
|
JSAPI_BINDING_node := javascript/jsapi/node.bnd
|
|
JSAPI_BINDING_event := javascript/jsapi/event.bnd
|
|
|
|
# 1: input binding file
|
|
# 2: source output file
|
|
# 3: header output file
|
|
# 4: binding name
|
|
define convert_jsapi_binding
|
|
|
|
S_JAVASCRIPT_BINDING += $(2)
|
|
D_JSAPI_BINDING += $(patsubst %.c,%.d,$(2))
|
|
|
|
$(2): $(1) $(OBJROOT)/created
|
|
$$(VQ)echo " GENBIND: $(1)"
|
|
$(Q)nsgenbind -g -I javascript/WebIDL -d $(patsubst %.c,%.d,$(2)) -h $(3) -o $(2) $(1)
|
|
|
|
$(3): $(2)
|
|
|
|
endef
|
|
|
|
|
|
S_JSAPI :=
|
|
|
|
S_JAVASCRIPT += content.c jsapi/jsapi.c $(addprefix jsapi/,$(S_JSAPI))
|
|
|
|
$(eval $(foreach V,$(filter JSAPI_BINDING_%,$(.VARIABLES)),$(call convert_jsapi_binding,$($(V)),$(OBJROOT)/$(patsubst JSAPI_BINDING_%,%,$(V)).c,$(OBJROOT)/$(patsubst JSAPI_BINDING_%,%,$(V)).h,$(patsubst JSAPI_BINDING_%,%,$(V))_jsapi)))
|
|
|
|
ifeq ($(filter $(MAKECMDGOALS),clean test coverage),)
|
|
-include $(D_JSAPI_BINDING)
|
|
endif
|
|
|