mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
32fe41fae7
We _do_ want to error on when including .config and .lib failed.
13 lines
317 B
Makefile
13 lines
317 B
Makefile
include ../../Makefile.config
|
|
INCLUDES += $(SPIDERMONKEY_CFLAGS)
|
|
|
|
SUBDIRS = spidermonkey
|
|
|
|
SM_OBJS = document.o form.o location.o navigator.o unibar.o window.o
|
|
OBJS = ecmascript.o spidermonkey.o $(foreach obj,$(SM_OBJS),spidermonkey/$(obj))
|
|
|
|
all-l: libecmascript.a
|
|
libecmascript.a: $(OBJS)
|
|
|
|
include ../../Makefile.lib
|