diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-07 00:31:06 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-07 00:31:06 +0100 |
commit | 9158de6c418b03e4c1ab5dfee8ed48a400afb443 (patch) | |
tree | c8efa987962d41043e144140c9a8459ff2f5cbfa /Kernel/makeall.sh | |
parent | 67ee579113edc2f5963372e04703848c87c89a94 (diff) | |
download | serenity-9158de6c418b03e4c1ab5dfee8ed48a400afb443.zip |
Begin working on a graphical TextEditor.
It's gonna be a wrapper around a new GTextEditor widget so I can easily
reuse the functionality anywhere I need it. :^)
Diffstat (limited to 'Kernel/makeall.sh')
-rwxr-xr-x | Kernel/makeall.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/makeall.sh b/Kernel/makeall.sh index b6c85c756e..2448f50a1e 100755 --- a/Kernel/makeall.sh +++ b/Kernel/makeall.sh @@ -28,6 +28,8 @@ $make_cmd -C ../Applications/FileManager clean && \ $make_cmd -C ../Applications/FileManager && \ $make_cmd -C ../Applications/ProcessManager clean && \ $make_cmd -C ../Applications/ProcessManager && \ +$make_cmd -C ../Applications/TextEditor clean && \ +$make_cmd -C ../Applications/TextEditor && \ $make_cmd -C ../Applications/About clean && \ $make_cmd -C ../Applications/About && \ $make_cmd clean &&\ |