From: Ian Jackson Date: Tue, 4 May 2021 21:01:01 +0000 (+0100) Subject: Makefile: Make the test bundle depend on the Makefile runes X-Git-Tag: otter-0.6.0~384 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7237d21d4470f220ad6e521ceb270c101d1449bb;p=otter.git Makefile: Make the test bundle depend on the Makefile runes Signed-off-by: Ian Jackson --- diff --git a/Makefile b/Makefile index a25858ff..9461ac4e 100644 --- a/Makefile +++ b/Makefile @@ -325,7 +325,7 @@ EXAMPLE_BUNDLE_INPUT_DEPS := $(shell \ cd examples/test-bundle/ && find \! \( -name '*~' -o -name '.*' \) \ ) -examples/test-bundle.zip: \ +examples/test-bundle.zip: $(MAKEFILE_DEP) \ $(addprefix examples/test-bundle/, $(EXAMPLE_BUNDLE_INPUT_DEPS)) set -e; rm -f $@.tmp; cd examples/test-bundle/; \ zip -DXy ../$(notdir $@).tmp $(EXAMPLE_BUNDLE_INPUT_DEPS)