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/callGraph/makefile src/utils/callGraph/makefile
index 008789f..346ade1 100644
--- src/utils/callGraph/makefile
+++ src/utils/callGraph/makefile
@@ -1,14 +1,15 @@
+kentSrc = ../..
 include ../../inc/common.mk
 
 L += -lm
 MYLIBDIR = $(HOME)/src/lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkweb.a
 
 O = callGraph.o
 
 callGraph: $O $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/callGraph $O $(MYLIBS) $L
 	${STRIP} ${BINDIR}/callGraph${EXE}
 
 clean::
 	rm -f ${O}