From 704a0e2637f2f8b4e9ce0353ce8d3c6cef2f3f02 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 20 Oct 2019 12:54:48 +0100 Subject: [PATCH] stest: Break out DEPS No functional change. Signed-off-by: Ian Jackson --- stest/Makefile.in | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/stest/Makefile.in b/stest/Makefile.in index 0979618..8b2b3de 100644 --- a/stest/Makefile.in +++ b/stest/Makefile.in @@ -10,6 +10,11 @@ TARGETS=udp-preload.so check TESTSCRIPTS ?= $(shell echo $(srcdir)/t-*[0-9a-z]) TESTNAMES := $(patsubst t-%,%,$(notdir $(TESTSCRIPTS))) +DEPS += udp-preload.so +DEPS += $(srcdir)/common.tcl +DEPS += ../secnet +DEPS += ../test-example/sites.conf + all: $(TARGETS) CFLAGS += -D_REENTRANT -fPIC @@ -37,8 +42,7 @@ check: check-real: $(foreach t,$(TESTNAMES),d-$t/ok) -d-%/ok: $(srcdir)/t-% udp-preload.so $(srcdir)/common.tcl \ - ../secnet ../test-example/sites.conf +d-%/ok: $(srcdir)/t-% $(DEPS) @rm -rf d-$*; mkdir d-$* export STEST_BUILDDIR=$(topbuilddir); \ cd $(topdir) && stest/t-$* >$(topbuilddir)/stest/d-$*/log 2>&1 -- 2.30.2