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

diff --git src/hg/lib/straw/makefile src/hg/lib/straw/makefile
index 1a664b9..f07e6f6 100644
--- src/hg/lib/straw/makefile
+++ src/hg/lib/straw/makefile
@@ -1,10 +1,10 @@
 KENT_INC=-I../../../inc
 
 straw: straw.o cStraw.o
 	ld -r -o ../straw.o straw.o cStraw.o
 straw.o: straw.cpp straw.h
-	${CXX} straw.cpp ${KENT_INC} -g -c -lz -std=c++11 -o straw.o
+	${CXX} straw.cpp ${KENT_INC} -g -c -std=c++11 -o straw.o
 cStraw.o: cStraw.cpp straw.h
-	${CXX} cStraw.cpp ${KENT_INC} -g -c -lz -std=c++11 -o cStraw.o
+	${CXX} cStraw.cpp ${KENT_INC} -g -c -std=c++11 -o cStraw.o
 clean:
 	rm -f straw.o cStraw.o ../straw.o