d0f6dc2d7df58ac53f13c10c52760191b5fedd4d tdreszer Tue Apr 17 11:55:24 2012 -0700 Revert "Added -lm to a bunch of makefiles since Galt's recent change (I think) calls math routines in lib code." This reverts commit d8d7b36bf9eac1c01e342ec56182caa374d46c3a. diff --git src/cdnaAli/g2cCheck/makefile src/cdnaAli/g2cCheck/makefile index 7e30c2c..969cd74 100755 --- src/cdnaAli/g2cCheck/makefile +++ src/cdnaAli/g2cCheck/makefile @@ -1,17 +1,17 @@ include ../../inc/common.mk MYLIBDIR = ../../lib/${MACHTYPE} MYLIBS = ${MYLIBDIR}/jkweb.a A = g2cCheck O = g2cCheck.o g2cCheck: $(O) - ${CC} ${COPT} ${CFLAGS} -lm -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L} + ${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L} ${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE} compile:: ${O} ${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O ${MYLIBS} ${L} clean: rm -f ${O} g2cCheck