summaryrefslogtreecommitdiff
path: root/Servers/TelnetServer
diff options
context:
space:
mode:
authorjoshua stein <jcs@jcs.org>2019-12-24 20:36:04 -0600
committerAndreas Kling <awesomekling@gmail.com>2019-12-25 10:11:09 +0100
commitc127d1632679823d2cfe873895fad72aa52cfc87 (patch)
treebcfc370f214955e90c2a8f9891a187af5a042eaa /Servers/TelnetServer
parent2aeae2aea9a289e3e9ba96444e44169dd78cc1cb (diff)
downloadserenity-c127d1632679823d2cfe873895fad72aa52cfc87.zip
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.
Diffstat (limited to 'Servers/TelnetServer')
-rw-r--r--Servers/TelnetServer/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Servers/TelnetServer/Makefile b/Servers/TelnetServer/Makefile
index 9606c548f4..bfee24f38c 100644
--- a/Servers/TelnetServer/Makefile
+++ b/Servers/TelnetServer/Makefile
@@ -5,6 +5,6 @@ OBJS = \
PROGRAM = TelnetServer
-LDFLAGS = -lcore -lc
+LIB_DEPS = Core
include ../../Makefile.common