Skip to content

Commit

Permalink
Build: go back to ordering SUBDIRS by their usefulness
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jcs authored and awesomekling committed Dec 28, 2019
1 parent b624eaa commit b916aa3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
SUBDIRS += \
AK \
Applications \
DevTools \
Kernel \
Libraries \
Servers

SUBDIRS += \
Applications \
Kernel \
MenuApplets \
Servers \
Shell \
Userland

Expand Down

0 comments on commit b916aa3

Please sign in to comment.