diff options
author | Samba Release Account <samba-bugs@samba.org> | 1996-06-17 14:11:14 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1996-06-17 14:11:14 +0000 |
commit | 912d4dae3af4ca952b06c491f5c711c0cdea568b (patch) | |
tree | 7af81cf9ed81dea85bcc65829316fa8915e43142 /source3/script | |
parent | 02657e51623569e298c269f374ec76a39dbe6f02 (diff) | |
download | samba-912d4dae3af4ca952b06c491f5c711c0cdea568b.tar.gz samba-912d4dae3af4ca952b06c491f5c711c0cdea568b.tar.bz2 samba-912d4dae3af4ca952b06c491f5c711c0cdea568b.zip |
Added source filename to give crude index
Dan 17 June 1996
(This used to be commit 5a72a6c8dfe3a0898db514c35a9d704c3627c41d)
Diffstat (limited to 'source3/script')
-rw-r--r-- | source3/script/mkproto.awk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index 3f3ef1c9fc..78f3fa080b 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -1,13 +1,22 @@ # generate prototypes for Samba C code # tridge, June 1996 +# added comment for each source file for use as crude index +# dan, 17 June 1996 BEGIN { inheader=0; + current_file=""; print "/* This file is automatically generated with \"make proto\". DO NOT EDIT */" print "" } { + if (FILENAME!=current_file) { + print "" + print "/*The following definitions come from ",FILENAME," */" + print "" + current_file=FILENAME + } if (inheader) { if (match($0,"[)][ \t]*$")) { inheader = 0; |