1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-18 08:41:00 +00:00
serenity/Applications/FontEditor
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
..
.gitignore FontEditor: Initial port to using a VisualBuilder generated UI. 2019-07-11 20:19:26 +02:00
FontEditor.cpp LibGUI: Convert remaining random little things to ObjectPtr 2019-09-21 19:40:14 +02:00
FontEditor.h LibGUI: Convert custom widgets and subclasses to ObjectPtr 2019-09-21 20:04:00 +02:00
FontEditorBottom.frm FontEditor(UI): Update the groupbox to have the right background color 2019-08-03 11:39:34 +02:00
GlyphEditorWidget.cpp AK: Rename the common integer typedefs to make it obvious what they are. 2019-07-03 21:20:13 +02:00
GlyphEditorWidget.h LibGUI: Convert remaining random little things to ObjectPtr 2019-09-21 19:40:14 +02:00
GlyphMapWidget.cpp LibGUI+LibDraw: Add "Palette" concept for scoped color theming 2019-12-24 21:27:16 +01:00
GlyphMapWidget.h LibGUI: Convert remaining random little things to ObjectPtr 2019-09-21 19:40:14 +02:00
main.cpp LibGUI: Convert custom widgets and subclasses to ObjectPtr 2019-09-21 20:04:00 +02:00
Makefile Build: support library and generator dependencies 2019-12-25 10:11:09 +01:00