1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-15 21:52:24 +00:00
serenity/Applications/IRCClient
joshua stein c127d16326 Build: support library and generator dependencies
Instead of directly manipulating LDFLAGS, set LIB_DEPS in each
subdirectory Makefile listing the libraries needed for
building/linking such as "LIB_DEPS = Core GUI Draw IPC Core".

This adds each library as an -L and -l argument in LDFLAGS, but
also adds the library.a file as a link dependency on the current
$(PROGRAM).  This causes the given library to be (re)built before
linking the current $(PROGRAM), but will also re-link any binaries
depending on that library when it is modified, when running make
from the root directory.

Also turn generator tools like IPCCompiler into dependencies on the
files they generate, so they are built on-demand when a particular
directory needs them.

This all allows the root Makefile to just list directories and not
care about the order, as all of the dependency tracking will figure
it out.
2019-12-25 10:11:09 +01:00
..
IRCAppWindow.cpp LibGUI+LibDraw: Add "Palette" concept for scoped color theming 2019-12-24 21:27:16 +01:00
IRCAppWindow.h IRCClient: Switch to using an HtmlView for the IRC window contents :^) 2019-10-28 20:53:19 +01:00
IRCChannel.cpp IRCClient: Implement the "part from channel" action. 2019-07-07 21:58:57 +02:00
IRCChannel.h AK: Rename <AK/AKString.h> to <AK/String.h> 2019-09-06 15:36:54 +02:00
IRCChannelMemberListModel.cpp Applications: Run clang-format on everything. 2019-06-07 11:48:03 +02:00
IRCChannelMemberListModel.h AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr. 2019-06-21 18:37:47 +02:00
IRCClient.cpp IRCClient: Sort the member list ignoring the character cases. 2019-12-03 12:50:06 +01:00
IRCClient.h LibCore: Remove ObjectPtr in favor of RefPtr 2019-09-22 00:31:54 +02:00
IRCLogBuffer.cpp IRCClient: Escape HTML entities in nicknames, too, just in case 2019-11-07 18:09:52 +01:00
IRCLogBuffer.h IRCClient: Switch to using an HtmlView for the IRC window contents :^) 2019-10-28 20:53:19 +01:00
IRCQuery.cpp AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr. 2019-06-21 18:37:47 +02:00
IRCQuery.h AK: Rename <AK/AKString.h> to <AK/String.h> 2019-09-06 15:36:54 +02:00
IRCWindow.cpp IRCClient: Switch to using an HtmlView for the IRC window contents :^) 2019-10-28 20:53:19 +01:00
IRCWindow.h IRCClient: Switch to using an HtmlView for the IRC window contents :^) 2019-10-28 20:53:19 +01:00
IRCWindowListModel.cpp GUI: Use Win2K-like "warm gray" color instead of the older colder gray. 2019-06-30 09:23:16 +02:00
IRCWindowListModel.h IRCClient: Open query window immediately when created by the user. 2019-07-13 11:54:01 +02:00
main.cpp LibGUI: Get rid of GWindow::should_exit_event_loop_on_close(). 2019-07-23 18:20:00 +02:00
Makefile Build: support library and generator dependencies 2019-12-25 10:11:09 +01:00