mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-19 18:52:39 +03:00
19 lines
340 B
Makefile
19 lines
340 B
Makefile
|
#
|
||
|
# NetSurf javascript source file inclusion
|
||
|
#
|
||
|
# Included by Makefile
|
||
|
#
|
||
|
|
||
|
S_JAVASCRIPT_BINDING:=
|
||
|
|
||
|
ifeq ($(NETSURF_USE_DUKTAPE),YES)
|
||
|
# Duktape
|
||
|
include content/handlers/javascript/duktape/Makefile
|
||
|
else
|
||
|
# None
|
||
|
include content/handlers/javascript/none/Makefile
|
||
|
endif
|
||
|
|
||
|
# Fetcher for javascript scheme is always required
|
||
|
S_JAVASCRIPT += fetcher.c
|