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/index/indexgl/makefile src/index/indexgl/makefile
index f5bb4de..091c144 100755
--- src/index/indexgl/makefile
+++ src/index/indexgl/makefile
@@ -1,15 +1,15 @@
 include ../../inc/common.mk
 
 
 O = indexgl.o 
 
 indexgl: ${O} 
 	${CC} $O ../../lib/${MACHTYPE}/jkweb.a \
-		-o ${BINDIR}/indexgl $L
+		-lm -o ${BINDIR}/indexgl $L
 	${STRIP} ${BINDIR}/indexgl${EXE}
 
 lib:
 	cd ../../lib && ${MAKE}
 
 clean::
 	rm -f ${O}