Penguin
Diff: MakefileHowto
EditPageHistoryDiffInfoLikePages

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

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

Newer page: version 68 Last edited on Wednesday, October 28, 2009 7:46:47 am by AlexLobster 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: 
+Based on manuals, [term papers | http://www.midterm.us] and [research papers | http://www.customwritings .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: 
 <verbatim> 
 DEPS := $(patsubst %.o,%.d,$(OBJS)) 
 </verbatim>