3eb96eff8e5eac717baa74c70a42a7a8cff239d0
hiram
  Wed Jun 14 15:29:25 2017 -0700
do not need the make libs step and it does not work with optimumLib no redmine

diff --git src/userApps/Makefile src/userApps/Makefile
index ef9d42e..46e6eea 100644
--- src/userApps/Makefile
+++ src/userApps/Makefile
@@ -2,38 +2,35 @@
 #  performs the operations of fetching selected directories from
 #  the kent source tree using 'git' and then building the utilities
 #  in the kent source tree.  All build results will be kept locally
 #  in this directory.
 
 export DESTDIR = ${CURDIR}
 export BINDIR = /bin
 export MACHTYPE = local
 export CGI_BIN = ${DESTDIR}/cgi-bin
 export DOCUMENTROOT = ${DESTDIR}/htdocs
 export SCRIPTS = ${DESTDIR}/scripts
 export NOSQLTEST = 1
 
 all:  utils
 
-utils: libs
+utils: installEnvironment
 	cd kent/src && ${MAKE} userApps
 	cd kent/src/parasol && ${MAKE}
 	./kent/src/utils/userApps/mkREADME.sh ${DESTDIR}/${BINDIR} ${CURDIR}/kentUtils.Documentation.txt
 
-libs: installEnvironment
-	cd kent/src && ${MAKE} libs
-
 clean:
 	test ! -d kent/src || (cd kent/src && ${MAKE} -i -k clean)
 	rm -f part1Src.zip part2Src.zip part3Src.zip part4Src.zip part5Src.zip
 	rm -f userApps.zip
 
 fetchSource:
 	./fetchKentSource.sh
 	@printf "size of fetched kent source tree: "
 	@du -hs kent
 	@printf "number of files in kent source tree: "
 	@find ./kent -type f | wc -l
 
 # this installEnvironment will add all the shell environment variables
 # to the kent/src/inc/localEnvironment.mk file which is included
 # from the kent/src/inc/userApps.mk to allow any 'make' to function