714017d05fd5c43c04909b45b79023859619e520 hiram Mon Jan 13 09:55:40 2025 -0800 eliminate the duplication of the -lm library refs #35048 diff --git src/utils/bedPileUps/makefile src/utils/bedPileUps/makefile index 5c93589..20ee016 100644 --- src/utils/bedPileUps/makefile +++ src/utils/bedPileUps/makefile @@ -1,19 +1,19 @@ kentSrc = ../.. A = bedPileUps include $(kentSrc)/inc/userApp.mk -L += -lm -lz ${SOCKETLIB} +L += ${SOCKETLIB} clean:: rm -f ${O} ${A} rm -fr tests/output test:: @rm -fr tests/output @${MKDIR} tests/output -${A} tests/input/foo.bed &> tests/output/foo.bed.txt diff tests/expected/foo.bed.txt tests/output/foo.bed.txt -${A} tests/input/foo2.bed &> tests/output/foo2.bed.txt diff tests/expected/foo2.bed.txt tests/output/foo2.bed.txt ${A} tests/input/foo3.bed &> tests/output/foo3.bed.txt diff tests/expected/foo3.bed.txt tests/output/foo3.bed.txt ${A} tests/input/foo4.bed &> tests/output/foo4.bed.txt