714017d05fd5c43c04909b45b79023859619e520 hiram Mon Jan 13 09:55:40 2025 -0800 eliminate the duplication of the -lm library refs #35048 diff --git src/hg/altSplice/spliceWalk/makefile src/hg/altSplice/spliceWalk/makefile index 05015ad..cdabec0 100644 --- src/hg/altSplice/spliceWalk/makefile +++ src/hg/altSplice/spliceWalk/makefile @@ -1,22 +1,22 @@ -L += $(MYSQLLIBS) -lm +L += $(MYSQLLIBS) MYLIBDIR = ../../../lib/$(MACHTYPE) MYLIBS = $(MYLIBDIR)/jkhgap.a $(MYLIBDIR)/jkweb.a ../lib/$(MACHTYPE)/libSpliceGraph.a % : %.c - ${CC} ${COPT} ${CFLAGS} -Wimplicit -I../inc -I../../inc -I../../../inc -o $@ $(addsuffix .c,$@) $(MYLIBS) ${L} $(MYSQLLIBS) -lm + ${CC} ${COPT} ${CFLAGS} -Wimplicit -I../inc -I../../inc -I../../../inc -o $@ $(addsuffix .c,$@) $(MYLIBS) ${L} $(MYSQLLIBS) cp $@ ${BINDIR} %Test: %Test.c ${CC} ${COPT} ${CFLAGS} -Wimplicit -I../inc -I../../inc -I../../../inc -o $@ $(addsuffix .c,$@) $(MYLIBS) ${L} O = spliceWalk TESTO = TESTS = exe: $(O) test: $(TESTS)