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/primeMate/makefile src/primeMate/makefile
index a0c41eb..c138723 100644
--- src/primeMate/makefile
+++ src/primeMate/makefile
@@ -1,15 +1,15 @@
 include ../inc/common.mk
 
 O = primeMate.o
 
 primeMate.exe: $(O) 
-	${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkweb.a ${L}
+	${CC} ${COPT} ${CFLAGS} -lm $O ../lib/$(MACHTYPE)/jkweb.a ${L}
 	mv ${AOUT} primeMate.exe
 
 install: primeMate.exe	
 	chmod a+rx primeMate.exe
 	chmod g-w primeMate.exe
 	mv primeMate.exe ${CGI_BIN}/
 
 clean::
 	rm -f primeMate.exe ${O} ${AOUT}