d8d7b36bf9eac1c01e342ec56182caa374d46c3a tdreszer Mon Apr 16 12:23:34 2012 -0700 Added -lm to a bunch of makefiles since Galt's recent change (I think) calls math routines in lib code. diff --git src/utils/countChars/makefile src/utils/countChars/makefile index 16778bf..a8567ce 100644 --- src/utils/countChars/makefile +++ src/utils/countChars/makefile @@ -1,11 +1,11 @@ include ../../inc/common.mk O = countChars.o countChars: $O - ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/countChars $O ../../lib/$(MACHTYPE)/jkweb.a ${L} + ${CC} ${COPT} ${CFLAGS} -lm -o ${BINDIR}/countChars $O ../../lib/$(MACHTYPE)/jkweb.a ${L} ${STRIP} ${BINDIR}/countChars${EXE} clean:: rm -f ${O}