mirror of
https://github.com/rkd77/elinks.git
synced 2024-10-05 04:24:03 -04:00
81c9f462c2
AFAIK SEE is no longer developped. I see no reason to use SEE in ELinks.
22 lines
500 B
Makefile
22 lines
500 B
Makefile
top_builddir=../..
|
|
include $(top_builddir)/Makefile.config
|
|
INCLUDES += $(SPIDERMONKEY_CFLAGS)
|
|
|
|
SUBDIRS-$(CONFIG_ECMASCRIPT_SMJS) += spidermonkey
|
|
|
|
OBJS-$(CONFIG_ECMASCRIPT_SMJS) += spidermonkey.o
|
|
|
|
ifeq ($(CONFIG_ECMASCRIPT_SMJS), yes)
|
|
CONFIG_ANY_SPIDERMONKEY = yes
|
|
else ifeq ($(CONFIG_SCRIPTING_SPIDERMONKEY), yes)
|
|
CONFIG_ANY_SPIDERMONKEY = yes
|
|
else
|
|
CONFIG_ANY_SPIDERMONKEY = no
|
|
endif
|
|
|
|
OBJS-$(CONFIG_ANY_SPIDERMONKEY) += spidermonkey-shared.o
|
|
|
|
OBJS = ecmascript.o
|
|
|
|
include $(top_srcdir)/Makefile.lib
|