mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +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.
16 lines
307 B
Makefile
16 lines
307 B
Makefile
OBJS = \
|
|
IRCClient.o \
|
|
IRCChannel.o \
|
|
IRCQuery.o \
|
|
IRCLogBuffer.o \
|
|
IRCAppWindow.o \
|
|
IRCWindow.o \
|
|
IRCWindowListModel.o \
|
|
IRCChannelMemberListModel.o \
|
|
main.o
|
|
|
|
PROGRAM = IRCClient
|
|
|
|
LIB_DEPS = Web JS GUI Gfx Protocol IPC Thread Pthread Core
|
|
|
|
include ../../Makefile.common
|