bc0daa57e76433e7fde5e352df577d5120e3bcc1
markd
  Mon Jan 13 01:11:31 2025 -0800
Add an version of stringify that is in interperted langauges so it does not have to be built first and in the path.  Useful if building just parts of the tree

diff --git src/utils/stringify/makefile src/utils/stringify/makefile
index cbb3543..5e4f032 100644
--- src/utils/stringify/makefile
+++ src/utils/stringify/makefile
@@ -1,4 +1,13 @@
 kentSrc = ../..
 A = stringify
 include $(kentSrc)/inc/userApp.mk
 L += -lm
+
+# add bash version
+installedStringifyEz = ${DESTDIR}${BINDIR}/stringifyEz
+
+install:: ${installedStringifyEz}
+
+${installedStringifyEz}: stringifyEz
+	@mkdir -p $(dir $@)
+	cp -p stringify $@