Vanilla Development Maling List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
CVS update: Vanilla/sequencer
Date: Saturday March 13, 1999 @ 14:08
Author: tanner
Update of /home/netrek/cvsroot/Vanilla/sequencer
In directory cvs.castle.real-time.com:/var/tmp/cvs-serv8774
Modified Files:
Makefile
Removed Files:
30
Log Message:
Clean up the Makefile. SRCS has many .c files that where not necessary
for the compilation of the sequencer, so I removed all un-needed files.
Move thed 30 file into an examples directory and gave it a more descriptive
name.
****************************************
Index: Vanilla/sequencer/Makefile
diff -u Vanilla/sequencer/Makefile:1.9 Vanilla/sequencer/Makefile:1.10
--- Vanilla/sequencer/Makefile:1.9 Sat Mar 13 13:47:28 1999
+++ Vanilla/sequencer/Makefile Sat Mar 13 14:08:02 1999
@@ -16,30 +16,19 @@
TOOLDIR= $(LIBDIR)/tools
-GETPATH = ../ntserv/getpath.o ../ntserv/data.o
-
LINTFLAGS = -habxc $(EXTRAINCS) $(FLAGS)
# Common Objects
-C_OBJS = ../ntserv/data.o \
- ../ntserv/openmem.o \
- ../ntserv/smessage.o \
- $(STRDUPO) \
- roboshar.o \
- ../ntserv/slotmaint.o
+C_OBJS = ../ntserv/data.o ../ntserv/openmem.o ../ntserv/smessage.o \
+ roboshar.o ../ntserv/slotmaint.o
# Sequencer Objects
S_OBJS = sequencer.o commands_sequencer.o $(C_OBJS)
-SRCS = ../robots/rmove.c ../ntserv/getpath.c ../ntserv/data.c \
- ../ntserv/detonate.c ../ntserv/enter.c ../ntserv/getship.c \
- ../ntserv/interface.c ../ntserv/orbit.c ../ntserv/phaser.c \
- ../ntserv/sintab.c ../ntserv/openmem.c ../ntserv/sysdefaults.c \
- ../ntserv/torp.c ../ntserv/util.c $(RANDOMC) ../ntserv/commands.c \
- ../ntserv/smessage.c ../robots/basep.c ../ntserv/wander2.c \
- ../robots/inl.c ../robots/inlcomm.c ../ntserv/slotmaint.c
+SRCS = roboshar.c sequencer.c ../ntserv/commands.c ../ntserv/data.c \
+ ../ntserv/openmem.c ../ntserv/smessage.c ../ntserv/slotmaint.c
EXECS = sequencer
@@ -51,11 +40,6 @@
commands_sequencer.o: $(PMAKE) ../ntserv/commands.c
$(CC) $(CFLAGS) $(DEP) -DSEQUENCER -c ../ntserv/commands.c -o commands_sequencer.o
-clean:; rm -f *.o *.ln
-
-reallyclean:; rm -f $(EXECS) *~ #*#
-
-
install: $(EXECS)
$(INSTALL) $(INSTALLOPTS) sequencer $(LIBDIR)/sequencer
@@ -63,11 +47,17 @@
lint $(LINTFLAGS) -u $?
touch lint
-rmdependencies:
- makedepend
-
-depend:
+depend::
$(CPP) -M $(CFLAGS) $(SRCS) > .depend
+
+etags::
+ @etags $(SRCS)
+
+clean::
+ @rm -f *.o *.ln
+
+reallyclean:: clean
+ @rm -f $(EXECS) *~ #*# .depends
#####
# DO NOT DELETE THIS LINE -- make depend depends on it.