11e45667d4e291b3038ccda729a1cdf5bcaf004a
braney
  Mon Jul 11 15:46:54 2016 -0700
incorporate htslib in kent src, remove USE_BAM, USE_SAMTABIX, USE_TABIX
defines, modify a bunch of makefiles to include kentSrc variable
pointing to top of the tree.

diff --git src/utils/wigToBedGraph/makefile src/utils/wigToBedGraph/makefile
index ecdf409..fb4b6b6 100644
--- src/utils/wigToBedGraph/makefile
+++ src/utils/wigToBedGraph/makefile
@@ -1,24 +1,25 @@
+kentSrc = ../..
 include ../../inc/common.mk
 
 L += -lm
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkweb.a
 
 A = wigToBedGraph
 O = wigToBedGraph.o
 
 wigToBedGraph: ${O} ${MYLIBS}
 	${CC} ${COPT} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} $L
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
 compile:: ${O}
 	${CC} ${COPT} -o ${A}${EXE} ${O} ${MYLIBS} $L
 
 clean::
 	rm -f ${A} ${O}
 
 test:
 	wigToBedGraph testFixed.wig tmp.bedGraph
 	diff testFixed.bedGraph tmp.bedGraph
 	wigToBedGraph testVar.wig tmp.bedGraph
 	diff testVar.bedGraph tmp.bedGraph