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/scanIntrons/makefile src/scanIntrons/makefile
index 94e3222..b4e705d 100644
--- src/scanIntrons/makefile
+++ src/scanIntrons/makefile
@@ -1,17 +1,17 @@
 include ../inc/common.mk
 
 O = scanIntrons.o
 
 scanIntrons.exe: $(O) lib
-	${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkweb.a ${L}
+	${CC} ${COPT} ${CFLAGS} -lm $O ../lib/$(MACHTYPE)/jkweb.a ${L}
 	mv ${AOUT} scanIntrons.exe
 	chmod a+rx scanIntrons.exe
 
 push:	
 	mv scanIntrons.exe ${CGI_BIN}-${USER}
 
 lib: 
 	cd ../lib && ${MAKE}
 
 clean::
 	rm -f ${O} scanIntrons.exe ${AOUT}