Skip to content
Snippets Groups Projects
Commit a5593fb6 authored by Oliver Sander's avatar Oliver Sander
Browse files

emit a comment explaining the purpose of the output file

[[Imported from SVN: r1332]]
parent ff32f0df
Branches
Tags
No related merge requests found
......@@ -16,6 +16,14 @@ unless (open OUTFILE, ">$outfilename") {
# recursively parse them for macro definitions.
foreach $file (@ARGV) {
# Write header comment
print OUTFILE "/** \\file\n";
print OUTFILE "* \\brief Contains <tt>#undef</tt>s for all preprocessor macros\n";
print OUTFILE "* defined by UG.\n";
print OUTFILE "*\n";
print OUTFILE "* This file is created automatically by the perl script <tt>undefAllMacros.pl</tt>.\n";
print OUTFILE "*/\n\n";
# Parse the file itself
emitUndefs($file);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment