Makefile: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
m →‎Basics: sp (build -> built)
Solar (talk | contribs)
Line 70: Line 70:
While it should be obvious to see what these two lines do, it took some experimentation to get it right given the typical GNU-style documentation of ''make'' (which is correct, but not very helpful). I now have a list of all source and header files in my project directories.
While it should be obvious to see what these two lines do, it took some experimentation to get it right given the typical GNU-style documentation of ''make'' (which is correct, but not very helpful). I now have a list of all source and header files in my project directories.


''The -mindepth option keeps any top-level files out of the result set, like tmp.c or test.c or whatever you might have created for testing something on the fly. The -maxdepth option stops the 'find' to recurse into the CVS/ directories I used to have. You might want to adapt this to your requirements.''
''The -mindepth option keeps any top-level files out of the result set, like tmp.c or test.c or whatever you might have created for testing something on the fly. The -maxdepth option stops the 'find' from recursing into the CVS/ directories I used to have. You might want to adapt this to your requirements.''


=== Automated Testing, pt. 1 ===
=== Automated Testing, pt. 1 ===