LibHTML: Fix host build and turn on ccache

This commit is contained in:
Andreas Kling 2019-08-17 22:25:46 +02:00
parent b957c61e6f
commit 587ddc5126
Notes: sideshowbarker 2024-07-19 12:37:29 +09:00

View file

@ -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