Date:	Monday April 30, 2001 @ 4:34
Author:	cameron

Update of /home/netrek/cvsroot/Vanilla/robots
In directory swashbuckler.fortress.real-time.com:/var/tmp/cvs-serv20916/robots

Modified Files:
	Makefile.in 
Log Message:
Sun Apr 29 16:52:47 2001  Benjamin `Quisar' Lerman <quisar at quisar.ambre.net>
	
	* configure.in: put back AC_SUBST(INL) so that sysdef is correct.
	Remove the hach about INSTALL that is not necessary. Changed a few
	things about res-rsa so that it work outside the tree source.
	Move handling of with-gum so that it does not mess with INSTALL

	* system.mk.in, keycomp/Makefile.in, newstartd/Makefile.in,
	ntserv/Makefile.in, pledit/Makefile.in, robotd/Makefile.in,
	robots/Makefile.in, sequencer/Makefile.in, tools/Makefile.in,
	xsg/Makefile.in: remove OPT (CFLAGS is the way to do it), remove
	-lm which is already there with configure and remove the double
	-g.

	* gum/Makefile.am, gum/Makefile.in, gum/signals.c: gum.xpm is now
	found by gum.



****************************************

Index: Vanilla/robots/Makefile.in
diff -u Vanilla/robots/Makefile.in:1.1 Vanilla/robots/Makefile.in:1.2
--- Vanilla/robots/Makefile.in:1.1	Thu Apr 26 19:45:20 2001
+++ Vanilla/robots/Makefile.in	Mon Apr 30 04:34:36 2001
@@ -14,11 +14,8 @@
 
 # this is for revised ntserv/struct.h
 
-#OPT = -g
+CFLAGS = -I${srcdir} -I. $(EXTRAINCS) $(DIRS) $(FLAGS) -DROBOT
 
-#CC = cc
-CFLAGS = -I${srcdir} -I. $(OPT) $(EXTRAINCS) $(DIRS) $(FLAGS) -DROBOT
-
 LIBS = $(EXTRALIBS)
 
 TOOLDIR= $(LIBDIR)/tools
@@ -79,22 +76,22 @@
 all: $(PMAKE) $(EXECS)
 
 puck: $(PMAKE) $(P_OBJS)
-	$(CC) $(CFLAGS)  ${LDFLAGS} -o puck $(P_OBJS) $(EXTRALIBS) -lm
+	$(CC) $(CFLAGS)  ${LDFLAGS} -o puck $(P_OBJS) $(EXTRALIBS)
 
 mars: $(PMAKE) $(M_OBJS)
-	$(CC) $(CFLAGS)  ${LDFLAGS} -o mars $(M_OBJS) $(EXTRALIBS) -lm
+	$(CC) $(CFLAGS)  ${LDFLAGS} -o mars $(M_OBJS) $(EXTRALIBS)
 
 robotII: $(PMAKE) $(R_OBJS)
-	$(CC) $(CFLAGS)  ${LDFLAGS} -o robotII  $(R_OBJS) $(EXTRALIBS) -lm
+	$(CC) $(CFLAGS)  ${LDFLAGS} -o robotII  $(R_OBJS) $(EXTRALIBS)
 
 basep: $(PMAKE) $(B_OBJS)
-	$(CC) $(CFLAGS)  ${LDFLAGS} -o basep $(B_OBJS) $(EXTRALIBS) -lm
+	$(CC) $(CFLAGS)  ${LDFLAGS} -o basep $(B_OBJS) $(EXTRALIBS)
 
 newbie: $(PMAKE) $(N_OBJS)
-	$(CC) $(CFLAGS)  ${LDFLAGS} -o newbie $(N_OBJS) $(EXTRALIBS) -lm
+	$(CC) $(CFLAGS)  ${LDFLAGS} -o newbie $(N_OBJS) $(EXTRALIBS)
 
 inl: $(PMAKE) $(I_OBJS)
-	$(CC) $(CFLAGS)  ${LDFLAGS} -o inl $(I_OBJS) $(EXTRALIBS) -lm
+	$(CC) $(CFLAGS)  ${LDFLAGS} -o inl $(I_OBJS) $(EXTRALIBS)
 
 commands_mars.o: $(PMAKE) ${srcdir}/../ntserv/commands.c
 	$(CC) $(CFLAGS) $(DEP) -DDOG -c ${srcdir}/../ntserv/commands.c -o commands_mars.o