b515245139885e85616db56a4cfd1c6321a84e80
tdreszer
  Mon Apr 16 13:04:55 2012 -0700
Another batch of makefile changes to add -lm
diff --git src/hg/gbGetEntries/makefile src/hg/gbGetEntries/makefile
index eb9e669..563ea8f 100644
--- src/hg/gbGetEntries/makefile
+++ src/hg/gbGetEntries/makefile
@@ -1,17 +1,17 @@
 include ../../inc/common.mk
 HG_WARN = ${HG_WARN_ERR}
 
 L += 
 MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
 
 O = gbGetEntries.o 
 
 gbGetEntries: $O ../../lib/$(MACHTYPE)/jkweb.a
-	${CC} -o ${BINDIR}/gbGetEntries $O $(MYLIBS) $L
+	${CC} -lm -o ${BINDIR}/gbGetEntries $O $(MYLIBS) $L
 
 test::
 	(cd tests && ${MAKE} test)
 
 clean::
 	(cd tests && ${MAKE} clean)