3844728d1f5262afe91c7dfdd7187cb46f8fa568 hiram Mon Jan 13 14:05:12 2025 -0800 eliminate the duplication of the -lm library refs #35048 diff --git src/hg/utils/sqlPerf/makefile src/hg/utils/sqlPerf/makefile index 5a69551..1958904 100644 --- src/hg/utils/sqlPerf/makefile +++ src/hg/utils/sqlPerf/makefile @@ -1,18 +1,17 @@ kentSrc = ../../.. include ../../../inc/common.mk -L += -lm MYLIBDIR = ../../../lib/${MACHTYPE} MYLIBS = ${MYLIBDIR}/jkweb.a O = sqlPerf.o sqlPerf: $O ${MYLIBS} ${CC} ${COPT} -o ${BINDIR}/sqlPerf $O ${MYLIBS} $L ${STRIP} ${BINDIR}/sqlPerf${EXE} compile: $O ${MYLIBS} ${CC} ${COPT} -o sqlPerf $O ${MYLIBS} $L clean: rm -f $O sqlPerf