From b916aa3b5af3afbe90709065cfad97ae280acdc2 Mon Sep 17 00:00:00 2001 From: joshua stein Date: Fri, 27 Dec 2019 23:57:03 -0600 Subject: [PATCH] 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. --- Makefile | 8 +++++--- 1 file 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