02336754147822f5aa61ba13277123b2cc629001 markd Thu May 20 08:38:55 2021 -0700 Moved pslMap, pslMapPostChain, pslRc, pslSwap to src/utils, as they do not have hg/lib dependencies. diff --git src/utils/pslMap/makefile src/utils/pslMap/makefile new file mode 100644 index 0000000..068bf1b --- /dev/null +++ src/utils/pslMap/makefile @@ -0,0 +1,14 @@ +kentSrc = ../.. +A = pslMap +include ${kentSrc}/inc/userApp.mk + +pslMap.o: usage.msg + +# create usage msg from text +usage.msg: usage.txt + echo '/* GENERATED CODE, DO NOT EDIT */' > $@.tmp + sed -Ee 's/^.*$$/"&\\n"/' $< >> $@.tmp + mv -f $@.tmp $@ + +clean:: + rm -f usage.msg