mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 09:45:09 +00:00

This patch begins integrating LibJS into LibWeb. Document holds the JS::Interpreter for now, and it is created on demand when you first call Document::interpreter(). We also add a simple "alert()" function to the global object.
12 lines
221 B
Makefile
12 lines
221 B
Makefile
OBJS = \
|
|
ManualModel.o \
|
|
ManualSectionNode.o \
|
|
ManualPageNode.o \
|
|
History.o \
|
|
main.o
|
|
|
|
PROGRAM = Help
|
|
|
|
LIB_DEPS = GUI Web JS Gfx Markdown IPC Protocol Thread Pthread Core
|
|
|
|
include ../../Makefile.common
|