1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-13 05:31:00 +00:00
serenity/Applications/IRCClient/Makefile
Andreas Kling e09b83c60c LibTextCodec: Start fleshing out a simple text codec library
We're starting with a very basic decoding API and only ISO-8859-1 and
UTF-8 decoding (and UTF-8 decoding is really a no-op since String is
expected to be UTF-8.)
2020-05-03 23:01:58 +02:00

16 lines
317 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 TextCodec JS GUI Gfx Protocol IPC Thread Pthread Core
include ../../Makefile.common