153a91e0067b0c2ccc9988dfb2a82507a8c8589f
hiram
  Mon Jan 13 10:27:33 2025 -0800
eliminate the duplication of the -lm library refs #35048

diff --git src/hg/affyTransciptome/makefile src/hg/affyTransciptome/makefile
index 8419268..a264866 100644
--- src/hg/affyTransciptome/makefile
+++ src/hg/affyTransciptome/makefile
@@ -1,17 +1,17 @@
 kentSrc = ../..
 include ../../inc/common.mk
 
-L += -lz -lm $(MYSQLLIBS)
+L += $(MYSQLLIBS)
 MYLIBDIR = ../../lib/$(MACHTYPE)
 MYLIBS =  $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a $(L)
 
 O = affyPairsToSample normalizeSampleFile avgTranscriptomeExps maxTranscriptomeExps scaleSampleFiles averageZoomLevels \
 	groupSamples
 
 %: %.c 
 	${CC} ${COPT} ${CFLAGS} -Wimplicit  -I../inc -I../../inc  -o ${DESTDIR}${BINDIR}/$@ $(addsuffix .c,$@) $(MYLIBS) ${L}
 
 all : $(O)
 
 clean::
 	rm -f ${O}