chiark / gitweb /
Rename *.test.tcl to test-load.tcl
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 18 Aug 2018 22:48:47 +0000 (23:48 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 18 Aug 2018 23:20:06 +0000 (00:20 +0100)
This gives it the same name in every subdirectory, which will be
convenient in a moment.

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
.gitignore
base/extension.make

index 29e8596ba844eede1106564e3469878fd69e2895..844c6d1cc4952468515464c27e4b4453fce491a6 100644 (file)
@@ -2,7 +2,7 @@
 *.o
 *.so
 *.d
-*.test.tcl
+test-load.tcl
 *+tcmdif.[ch]
 debian/files
 debian/libtcl-chiark-1
index 5cfc951a1c02226227ab6cfe54bb7882a801a1a6..ccc7407a63111f33d551c3396786bb2a5e00e3e9 100644 (file)
@@ -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