diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-06 19:14:34 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-06 19:14:34 +0100 |
commit | 9a5e0652297b0c3f0a3ce4fc519989f52b437807 (patch) | |
tree | 9c9cbb2df369e8cd0f9d044653f495b509f86bd6 /AK/Tests | |
parent | 2f16e31afcf065cbe9c903889c0bb74f0bb2adb0 (diff) | |
download | serenity-9a5e0652297b0c3f0a3ce4fc519989f52b437807.zip |
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.
Diffstat (limited to 'AK/Tests')
-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 77f8957daf..e1d77373dc 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 |