1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00
serenity/Applications/IRCClient/Makefile
Andreas Kling 9c9d3f0904 LibWeb: Parse <script> elements and run any JavaScript found inside
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.
2020-03-14 13:25:38 +01:00

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