From 9a5e0652297b0c3f0a3ce4fc519989f52b437807 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 6 Nov 2019 19:14:34 +0100 Subject: [PATCH] AK: Always rebuild unit tests if AK headers change This is a hack to avoid failing AK unit tests because it didn't even try to rebuild. --- AK/Tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Tests/Makefile b/AK/Tests/Makefile index 77f8957daf0c34..e1d77373dc7480 100644 --- a/AK/Tests/Makefile +++ b/AK/Tests/Makefile @@ -14,7 +14,7 @@ SHARED_TEST_OBJS = \ ../URL.o \ ../Utf8View.o \ -.cpp.o: +%.o: %.cpp ../*.h @echo "HOST_CXX $<"; $(PRE_CXX) $(CXX) $(CXXFLAGS) -o $@ -c $< define execute-command