Makefile: Difference between revisions

[unchecked revision][unchecked revision]
Content deleted Content added
m →‎Links: listfix
Line 120:
This adds all the dependency rules auto-generated by ''GCC''. (see below)
 
=== Extracting TODO Statements ===
<pre>
todolist:
-@for file in $(ALLFILES); do grepfgrep -H -e TODO -e FIXME $$file; done; true
</pre>
This will ''grep'' all those ''TODO:'' and ''FIXME'' comments from mythe files and display them in the terminal. NiceIt's nice to be remembered of what's still missing before you do a release. To add another keyword, just add another <code>-e keyword</code>. Don't forget to add <code>todolist</code> to your <code>.PHONY</code> list.
 
===Dependencies, pt. 3===