From 2dea31b3bb59112cef6f43734c97c0d8709cc23b Mon Sep 17 00:00:00 2001 From: Martin Kinkelin Date: Sat, 2 Dec 2023 23:27:28 +0100 Subject: [PATCH] Top-level posix.mak: Include druntime in `test` and `clean` rules This probably pre-dates the druntime merge into the dmd repo. --- posix.mak | 2 ++ 1 file changed, 2 insertions(+) diff --git a/posix.mak b/posix.mak index 5bb79e36f5..419066069b 100644 --- a/posix.mak +++ b/posix.mak @@ -32,10 +32,12 @@ clean: rm -Rf $(GENERATED) cd compiler/test && rm -rf test_results *.lst trace.log trace.def $(RM) tags + $(QUIET)$(MAKE) -C druntime -f posix.mak clean test: all $(GENERATED)/build $(GENERATED)/run $(GENERATED)/build unittest $(GENERATED)/run --environment HOST_DMD=$(HOST_DMD) + $(QUIET)$(MAKE) -C druntime -f posix.mak unittest html: $(GENERATED)/build $(GENERATED)/build $@