diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-08 21:40:40 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-08 21:40:40 +0100 |
commit | b956e2d939d914507a4539b3f63f42be215fc083 (patch) | |
tree | eae4cdf295867af3a55819cae0f2b7b3e353e94b /AK | |
parent | d9126b1ad55267652511eab7f73f36f4a3b3ce8e (diff) | |
download | serenity-b956e2d939d914507a4539b3f63f42be215fc083.zip |
AK: Remove all the AK .host.o files on "make clean" in AK/Tests
This is a bit hackish, but sometimes these files stick around and mess
up rebuilds.
Diffstat (limited to 'AK')
-rw-r--r-- | AK/Tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Tests/Makefile b/AK/Tests/Makefile index 783d92c0dd..80886dace4 100644 --- a/AK/Tests/Makefile +++ b/AK/Tests/Makefile @@ -16,7 +16,7 @@ SHARED_TEST_OBJS = ${SHARED_TEST_SOURCES:.cpp=.host.o} OBJS = ${SRCS:.cpp=.host.o} $(SHARED_TEST_OBJS) APPS = ${SRCS:.cpp=} -EXTRA_CLEAN = $(APPS) *.o +EXTRA_CLEAN = $(APPS) *.o ../*.host.o USE_HOST_CXX = 1 |