3844728d1f5262afe91c7dfdd7187cb46f8fa568
hiram
  Mon Jan 13 14:05:12 2025 -0800
eliminate the duplication of the -lm library refs #35048

diff --git src/hg/utils/bedExtendRanges/makefile src/hg/utils/bedExtendRanges/makefile
index 6949ac1..6ab65de 100644
--- src/hg/utils/bedExtendRanges/makefile
+++ src/hg/utils/bedExtendRanges/makefile
@@ -1,30 +1,30 @@
 kentSrc = ../../..
 include ../../../inc/common.mk
 
-L += -lm ${MYSQLLIBS}
+L += ${MYSQLLIBS}
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 A = bedExtendRanges
 O = ${A}.o
 
 GOODFILES = bed7.txt bed8.txt chromBoundaries.txt
 
 all:: $(O) $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O $(MYLIBS) $L
 	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
 compile:: $(O) $(MYLIBS)
 	${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O $(MYLIBS) $L
 
 clean::
 	rm -f $(O) ${A}
 
 test: good
 	
 
 good:
 	@for good in $(GOODFILES); do \
 		echo "Processing test file: $$good"; \
 		${A} hg18 259 stdin < tests/$$good; \
 	done