summaryrefslogtreecommitdiff
path: root/Applications/IRCClient/Makefile
AgeCommit message (Collapse)Author
2019-06-25Move common Application build steps into their own Makefile.commonLawrence Manning
Further consolidation is of course possible, eg the Games/ programs follow the same rules more or less.
2019-05-13Fix "make clean" not deleting app binaries.Andreas Kling
2019-04-21Include Makefile.common in all other Makefiles.Andreas Kling
2019-04-20Get rid of SERENITY macro since the compiler already defines __serenity__Andreas Kling
This makes it a bit easier to use AK templates out-of-tree.
2019-04-10Introduce LibCore and move GElapsedTimer => CElapsedTimer.Andreas Kling
I need a layer somewhere between AK (usable both by userspace and kernel) and LibGUI (usable by userspace except WindowServer.) So here's LibCore.
2019-04-08LibGUI: Make GSocket connection asynchronous.Andreas Kling
Now connect() will return immediately. Later on, when the socket is actually connected, it will call GSocket::on_connected from the event loop. :^)
2019-03-27LibC: Run constructors on process startup.Andreas Kling
Cooperate with the compiler to generate and execute the _init_array list of constructor functions on userspace program statup. This took two days to get working, my goodness. :^)
2019-03-20Move WindowServer into Servers.Andreas Kling
2019-03-16IRCClient: Rename IRCClientWindowFoo => IRCWindowFoo.Andreas Kling
2019-03-15IRClient: Add a member list to channel views.Andreas Kling
2019-03-15IRCClient: Use a model for the window list.Andreas Kling
2019-03-15IRCClient: Rename IRCSubWindow => IRCClientWindow.Andreas Kling
2019-03-15IRCClient: Hacking on IRCClient bringup.Andreas Kling
2019-03-15IRCClient: Start working on a simple graphical IRC client.Andreas Kling
This will be a nice way to exercise both LibGUI and the TCP/IP support. :^)