Vanilla Development Maling List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla/tools



Date:	Sunday March 14, 1999 @ 19:25
Author:	tanner

Update of /home/netrek/cvsroot/Vanilla/tools
In directory cvs.castle.real-time.com:/var/tmp/cvs-serv533/tools

Modified Files:
	Makefile 
Log Message:
Replaced the $(CPP) -E -M dependancy check with the makedepend program,
but still save the dependancies to .depend and including them into the 
Makefile.

This will give the speed of makedepend, but keep the acutally dependancy
list out of the makefile.



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

Index: Vanilla/tools/Makefile
diff -u Vanilla/tools/Makefile:1.6 Vanilla/tools/Makefile:1.7
--- Vanilla/tools/Makefile:1.6	Sat Mar 13 13:47:29 1999
+++ Vanilla/tools/Makefile	Sun Mar 14 19:25:11 1999
@@ -161,10 +161,11 @@
 	touch lint
 
 depend::
-	$(CPP) -M $(CFLAGS) $(SRCS) > .depend
+	makedepend -f.depend  $(CFLAGS) $(SRCS)
 
 rmdependencies:
 	makedepend
 
 #####
-# DO NOT DELETE THIS LINE -- make depend depends on it.
+# DO NOT DELETE THIS LINE
+-include .depend