Penguin
Diff: MakefileHowto
EditPageHistoryDiffInfoLikePages

Differences between version 69 and predecessor to the previous major change of MakefileHowto.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 69 Last edited on Wednesday, October 28, 2009 10:35:51 am by PerryLorier Revert
Older page: version 67 Last edited on Friday, May 8, 2009 11:46:24 am by StairWay Revert
@@ -267,9 +267,9 @@
  
 ---- 
 !!Automatic dependency calculation 
  
-Based on manuals and [research papers | http://www.besttermpaper.com], if you are creating a Makefile for C/C++ gcc can calculate dependency information for you. The quickest way to get this going is to add the -MD flag to your CFLAGS first. You will then need to know the names of the .d files in your makefile. I do something like this: 
+If you are creating a Makefile for C/C++ gcc can calculate dependency information for you. The quickest way to get this going is to add the -MD flag to your CFLAGS first. You will then need to know the names of the .d files in your makefile. I do something like this: 
 <verbatim> 
 DEPS := $(patsubst %.o,%.d,$(OBJS)) 
 </verbatim>