Commit 8e6697fc authored by Bruce Momjian's avatar Bruce Momjian

Update include scripts

parent 7fe87222
These utilities help clean up #include file usage:
pgfixinclude change #include's to <> or ""
pgrminclude remove extra #include's
pginclude [-v] report which #include files can not compile on their own
pgdefine create macro calls for all defines in the file (used by
the above routines)
:
# create macro calls for all defines in the file
trap "rm -f /tmp/$$" 0 1 2 3 15
for FILE
do
......
:
# mark includes as <> or ""
# change #include's to <> or ""
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
find . \( -name CVS -a -prune \) -o -type f -print |
......
:
# report which include files can not compile on their own
# report which #include files can not compile on their own
# takes -v option to display compile failure message and line numbers
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a" 0 1 2 3 15
find . \( -name CVS -a -prune \) -o -name '*.[ch]' -type f -print | while read FILE
......
:
# report which files have extra includes
# remove extra #include's
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
find . \( -name CVS -a -prune \) -o -type f -print |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment