b515245139885e85616db56a4cfd1c6321a84e80
tdreszer
  Mon Apr 16 13:04:55 2012 -0700
Another batch of makefile changes to add -lm
diff --git src/hg/patCount/makefile src/hg/patCount/makefile
index 1c9c5ad..2fb8e2e 100644
--- src/hg/patCount/makefile
+++ src/hg/patCount/makefile
@@ -1,17 +1,17 @@
 include ../../inc/common.mk
 
 
 L += 
 MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a
 
 O = patCount.o
 
 patCount: $O ../../lib/$(MACHTYPE)/jkweb.a 
-	${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/patCount $O $(MYLIBS) $L
+	${CC} ${COPT} ${CFLAGS} -lm -o ${BINDIR}/patCount $O $(MYLIBS) $L
 
 lib:
 	cd ../../lib && ${MAKE}
 
 clean::
 	rm -f ${O}