b778b2c6696e52d0efc6d8b2a2a3d2b89f650d6c
markd
  Sun Jan 2 10:26:27 2011 -0800
hg/utils tests were not automatically run
diff --git src/hg/genePredHisto/makefile src/hg/genePredHisto/makefile
index f6b0939..7142451 100644
--- src/hg/genePredHisto/makefile
+++ src/hg/genePredHisto/makefile
@@ -1,22 +1,21 @@
 include ../../inc/common.mk
 HG_WARN = ${HG_WARN_ERR}
 
 MYLIBDIR = ../../lib/${MACHTYPE}
 L += ${MYSQLLIBS} -lm
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 A = genePredHisto
 O = ${A}.o
 
-genePredHisto: $O ${MYLIBS}
+${DESTDIR}${BINDIR}/${A}${EXE}: $O ${MYLIBS}
 	${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} $L
 
-compile:
-	${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O ${MYLIBS} $L
+compile: ${DESTDIR}${BINDIR}/${A}${EXE}
 
 test: compile
 	(cd tests && ${MAKE} test)
 	rm -fr tests/output ${A}${EXE} ${A}.o
 
 clean::
 	rm -fr tests/output ${A}${EXE} ${A}.o