Index: head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml =================================================================== --- head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml +++ head/en_US.ISO8859-1/books/developers-handbook/tools/chapter.xml @@ -1177,7 +1177,7 @@ pain to keep track of all include files and the files which are depending on it. If you change an include-file but forget to recompile all the files which are depending on - it, the results will be devastating. gcc + it, the results will be devastating. clang has an option to analyze your files and to produce a list of include-files and their dependencies: . @@ -1185,7 +1185,7 @@ If you add this to your Makefile: depend: - gcc -E -MM *.c > .depend + cc -E -MM *.c > .depend and run make depend, the file .depend will appear with a list of