mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 00:56:14 +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.
18 lines
476 B
Makefile
Executable File
18 lines
476 B
Makefile
Executable File
OBJS = \
|
|
main.o \
|
|
InspectorWidget.o
|
|
|
|
PROGRAM = Browser
|
|
|
|
LIB_DEPS = Web JS GUI Gfx IPC Protocol Core
|
|
|
|
main.cpp: ../../Libraries/LibWeb/CSS/PropertyID.h
|
|
../../Libraries/LibWeb/CSS/PropertyID.h:
|
|
@flock ../../Libraries/LibWeb $(MAKE) -C ../../Libraries/LibWeb
|
|
|
|
main.cpp: ../../Servers/ProtocolServer/ProtocolClientEndpoint.h
|
|
../../Servers/ProtocolServer/ProtocolClientEndpoint.h:
|
|
@flock ../../Servers/ProtocolServer $(MAKE) -C $(dir $(@))
|
|
|
|
include ../../Makefile.common
|