From 20f8fb4c0c8698ed4fbe844ab956f56ea5269ae8 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 18 Aug 2018 23:48:47 +0100 Subject: [PATCH] Rename *.test.tcl to test-load.tcl This gives it the same name in every subdirectory, which will be convenient in a moment. Signed-off-by: Ian Jackson --- .gitignore | 2 +- base/extension.make | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 29e8596..844c6d1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ *.o *.so *.d -*.test.tcl +test-load.tcl *+tcmdif.[ch] debian/files debian/libtcl-chiark-1 diff --git a/base/extension.make b/base/extension.make index 5cfc951..ccc7407 100644 --- a/base/extension.make +++ b/base/extension.make @@ -48,11 +48,11 @@ OTHER_DIRS += . null := space := $(null) # -$(SHLIB).test.tcl: +test-load.tcl: echo >$@ "load $(SHLIB).so" -test-load: $(SHLIB).so $(SHLIB).test.tcl +test-load: $(SHLIB).so test-load.tcl @set -x; LD_LIBRARY_PATH=$(subst $(space),:,$(strip $(OTHER_DIRS)))$${LD_LIBRARY_PATH+:}$${LD_LIBRARY_PATH} \ - tclsh$(TCL_VERSION) $(SHLIB).test.tcl + tclsh$(TCL_VERSION) test-load.tcl include $(BASE_DIR)/final.make -- 2.30.2