postgresql/src/tools/pginclude
2006-07-13 16:39:20 +00:00
..
pgcompinclude Improve pginclude compile flags. 2006-07-11 20:12:29 +00:00
pgdefine Improve pginclude tools to process include file usage by other include files. 2006-07-13 16:39:20 +00:00
pgfixinclude Improve script by processing only C files. 2006-07-10 16:07:24 +00:00
pgrminclude Improve pginclude tools to process include file usage by other include files. 2006-07-13 16:39:20 +00:00
README Update pginclude documentation. 2006-07-11 19:52:12 +00:00

These utilities help clean up #include file usage.  They should be run
in this order so that the include files have the proper includes before
the C files are tested.

pgfixinclude	change #include's to <> or ""

pgcompinclude [-v]
		report which #include files can not compile on their own

pgrminclude [-v]
		remove extra #include's

pgdefine	create macro calls for all defines in the file (used by
		the above routines)

It is also a good idea to sort the pg-specific include files in
alphabetic order.  This is best done with a text editor. Typical usage
order would be:

	pgfixinclude  
	pgcompinclude
	pgrminclude /src/include
	pgcompinclude
	pgrminclude /