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/inc/common.mk src/inc/common.mk index 02685b9..0c9afd8 100644 --- src/inc/common.mk +++ src/inc/common.mk @@ -382,32 +382,32 @@ endif ifeq (${BINDIR},) BINDIR = ${HOME}/bin/${MACHTYPE} endif ifeq (${ENCODE_PIPELINE_BIN},) ENCODE_PIPELINE_BIN=/cluster/data/encode/pipeline/bin endif # avoid an extra leading slash when DESTDIR is empty ifeq (${DESTDIR},) DESTBINDIR=${BINDIR} else DESTBINDIR=${DESTDIR}/${BINDIR} endif -# location of stringify program -STRINGIFY = ${DESTBINDIR}/stringify +# location of interperted version of stringify program +STRINGIFY = ${kentSrc}/utils/stringify/stringifyEz MKDIR=mkdir -p ifeq (${STRIP},) STRIP=true endif CVS=cvs GIT=git # portable naming of compiled executables: add ".exe" if compiled on # Windows (with cygwin). ifeq (${OS}, Windows_NT) AOUT=a EXE=.exe else AOUT=a.out