1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:47:34 +00:00

Build: Build the host-side FormCompiler before everything else.

Since we're gonna want to use this for building other apps, it should be
the very first thing we build.
This commit is contained in:
Andreas Kling 2019-07-10 21:22:27 +02:00
parent 3eb6a9a286
commit f07649faba
2 changed files with 2 additions and 1 deletions

View file

@ -14,6 +14,7 @@ fi
make_cmd="make -j $MAKEJOBS"
build_targets=""
build_targets="$build_targets ../DevTools/FormCompiler"
build_targets="$build_targets ../Libraries/LibC"
build_targets="$build_targets ../Libraries/LibM"
build_targets="$build_targets ../Libraries/LibCore"