summaryrefslogtreecommitdiff
path: root/DevTools
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-10 21:22:27 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-10 21:22:27 +0200
commitf07649fabaeb1d51057c9aeb7f29a3ed60d0d318 (patch)
treede4ab0602ad1dcbdd604b98432cf2870ae2ae617 /DevTools
parent3eb6a9a2866e4c102aa58c3ebc48a862acc70287 (diff)
downloadserenity-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/Makefile2
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)