From 587ddc5126a09bc8d926929e0220404674628247 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 17 Aug 2019 22:25:46 +0200 Subject: [PATCH] LibHTML: Fix host build and turn on ccache --- Libraries/LibHTML/Makefile.host | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Libraries/LibHTML/Makefile.host b/Libraries/LibHTML/Makefile.host index ec6eca22e8..51e0bc82de 100644 --- a/Libraries/LibHTML/Makefile.host +++ b/Libraries/LibHTML/Makefile.host @@ -1,5 +1,6 @@ all: tho +CXX = ccache g++ CXXFLAGS = -W -Wall -O -g -I. -I../ -I../../ -std=c++17 EXTRA_OBJS = \ @@ -8,10 +9,18 @@ EXTRA_OBJS = \ ../../AK/StringBuilder.o \ ../../AK/StringView.o \ ../../AK/LogStream.o \ + ../../AK/JsonValue.o \ + ../../AK/JsonParser.o \ + ../../AK/JsonArray.o \ + ../../AK/JsonObject.o \ ../LibCore/CEventLoop.o \ ../LibCore/CObject.o \ ../LibCore/CEvent.o \ ../LibCore/CIODevice.o \ + ../LibCore/CLocalServer.o \ + ../LibCore/CLocalSocket.o \ + ../LibCore/CSocket.o \ + ../LibCore/CNotifier.o \ ../LibCore/CFile.o include Makefile.shared