Check-in [cdc1c61304]
Overview
Comment:Keep tests around
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: cdc1c6130456b2f75c283ec2759c8909ffba4aa2b6476fa9764bfe1334f1bf5c
User & Date: rkeene on 2018-07-08 21:41:25.159
Other Links: manifest | tags
Context
2018-07-09
04:06
Updated to abstract out mechanisms more and add a high-level set representative function check-in: 39d464b11c user: rkeene tags: trunk
2018-07-08
21:41
Keep tests around check-in: cdc1c61304 user: rkeene tags: trunk
21:39
Remove mrproper from distributed Makefile, since it is only for internal use check-in: a0d2d37cfe user: rkeene tags: trunk
Changes
61
62
63
64
65
66
67
68

69
70
71
72
73
74
75
61
62
63
64
65
66
67

68
69
70
71
72
73
74
75







-
+







nano.tcl.h: @srcdir@/nano.tcl Makefile
	od -A n -v -t xC < '@srcdir@/nano.tcl' > nano.tcl.h.new.1
	sed 's@  *@@g;s@..@0x&, @g' < nano.tcl.h.new.1 > nano.tcl.h.new.2
	rm -f nano.tcl.h.new.1
	mv nano.tcl.h.new.2 nano.tcl.h

test: @EXTENSION_TARGET@ pkgIndex.tcl
	@srcdir@/build/test/test.tcl .
	@srcdir@/test/test.tcl .

install: @EXTENSION_TARGET@ pkgIndex.tcl
	$(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
	$(INSTALL_PROGRAM) @EXTENSION_TARGET@ '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
	$(INSTALL_DATA)    pkgIndex.tcl '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
 
clean:
Name change from build/test/test.tcl to test/test.tcl.