mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
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.
This commit is contained in:
parent
b624eaaf78
commit
b916aa3b5a
Notes:
sideshowbarker
2024-07-19 10:34:42 +09:00
Author: https://github.com/jcs Commit: https://github.com/SerenityOS/serenity/commit/b916aa3b5af Pull-request: https://github.com/SerenityOS/serenity/pull/942
1 changed files with 5 additions and 3 deletions
8
Makefile
8
Makefile
|
@ -1,11 +1,13 @@
|
|||
SUBDIRS += \
|
||||
AK \
|
||||
Applications \
|
||||
DevTools \
|
||||
Kernel \
|
||||
Libraries \
|
||||
Servers
|
||||
|
||||
SUBDIRS += \
|
||||
Applications \
|
||||
Kernel \
|
||||
MenuApplets \
|
||||
Servers \
|
||||
Shell \
|
||||
Userland
|
||||
|
||||
|
|
Loading…
Reference in a new issue