summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoshua stein <jcs@jcs.org>2019-12-27 23:57:03 -0600
committerAndreas Kling <awesomekling@gmail.com>2019-12-28 21:09:33 +0100
commitb916aa3b5af3afbe90709065cfad97ae280acdc2 (patch)
tree70e6e70637c464811bf91cb4871b9b8db0a4bf3b
parentb624eaaf78fcda9732669262f465becb74d34874 (diff)
downloadserenity-b916aa3b5af3afbe90709065cfad97ae280acdc2.zip
Build: go back to ordering SUBDIRS by their usefulness
The dependency tracking still doesn't need any specific ordering to build, but it's better to build DevTools and Libraries first so it doesn't try to build two Applications that each need to wait for libraries to be built, wasting a make child sitting around trying to acquire the lock on the library directory.
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 31e79296d0..69ce2c9bbb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,13 @@
SUBDIRS += \
AK \
- Applications \
DevTools \
- Kernel \
Libraries \
+ Servers
+
+SUBDIRS += \
+ Applications \
+ Kernel \
MenuApplets \
- Servers \
Shell \
Userland