0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00
elinks/src/ecmascript/Makefile

22 lines
500 B
Makefile
Raw Normal View History

2005-10-20 04:00:35 +02:00
top_builddir=../..
include $(top_builddir)/Makefile.config
INCLUDES += $(SPIDERMONKEY_CFLAGS)
2006-01-14 10:41:58 +01:00
SUBDIRS-$(CONFIG_ECMASCRIPT_SMJS) += spidermonkey
2006-01-11 13:45:09 +01:00
2006-01-14 10:41:58 +01:00
OBJS-$(CONFIG_ECMASCRIPT_SMJS) += spidermonkey.o
2006-01-11 13:45:09 +01:00
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