diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-10 21:22:27 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-10 21:22:27 +0200 |
commit | f07649fabaeb1d51057c9aeb7f29a3ed60d0d318 (patch) | |
tree | de4ab0602ad1dcbdd604b98432cf2870ae2ae617 /DevTools | |
parent | 3eb6a9a2866e4c102aa58c3ebc48a862acc70287 (diff) | |
download | serenity-f07649fabaeb1d51057c9aeb7f29a3ed60d0d318.zip |
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.
Diffstat (limited to 'DevTools')
-rw-r--r-- | DevTools/FormCompiler/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DevTools/FormCompiler/Makefile b/DevTools/FormCompiler/Makefile index 497bdacf9a..67dfdd7006 100644 --- a/DevTools/FormCompiler/Makefile +++ b/DevTools/FormCompiler/Makefile @@ -22,7 +22,7 @@ all: $(PROGRAM) CXXFLAGS = -std=c++17 -Wall -Wextra $(PROGRAM): $(SOURCES) - $(CXX) $(CXXFLAGS) -I../ -I../../ -I../../Libraries/ -o $@ $(SOURCES) + $(PRE_CXX) $(CXX) $(CXXFLAGS) -I../ -I../../ -I../../Libraries/ -o $@ $(SOURCES) clean: rm -f $(PROGRAM) |