714017d05fd5c43c04909b45b79023859619e520
hiram
  Mon Jan 13 09:55:40 2025 -0800
eliminate the duplication of the -lm library refs #35048

diff --git src/hg/altSplice/agxToXml/makefile src/hg/altSplice/agxToXml/makefile
index 9c2faf2..33c1739 100644
--- src/hg/altSplice/agxToXml/makefile
+++ src/hg/altSplice/agxToXml/makefile
@@ -1,19 +1,19 @@
 kentSrc = ../../..
 include ../../../inc/common.mk
 
-L += ${MYSQLLIBS} -lm
+L += ${MYSQLLIBS}
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a 
 
 O = agxToXml.o
 
 agxToXml: $O ${MYLIBS}
 	${CC} ${COPT} -o ${BINDIR}/agxToXml $O ${MYLIBS} $L
 	${STRIP} ${BINDIR}/agxToXml${EXE}
 
 test:
 	agxToXml input.agx output.xml
 	diff expected.xml output.xml
 
 clean:
 	rm -f $O