diff options
author | joshua stein <jcs@jcs.org> | 2019-12-27 23:57:03 -0600 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-28 21:09:33 +0100 |
commit | b916aa3b5af3afbe90709065cfad97ae280acdc2 (patch) | |
tree | 70e6e70637c464811bf91cb4871b9b8db0a4bf3b | |
parent | b624eaaf78fcda9732669262f465becb74d34874 (diff) | |
download | serenity-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-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,11 +1,13 @@ SUBDIRS += \ AK \ - Applications \ DevTools \ - Kernel \ Libraries \ + Servers + +SUBDIRS += \ + Applications \ + Kernel \ MenuApplets \ - Servers \ Shell \ Userland |