diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-11-14 17:18:20 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-11-14 17:18:20 +0000 |
commit | 1a0bbc296c7534df9b3545f899aa7a0fb0c87f16 (patch) | |
tree | ee711972fcf245ff9cdb9e0e6fd9e4f5e3a56b78 | |
parent | b78f9b496df89ac7bc81b7ff37ca83006c529bda (diff) | |
download | postgresql-1a0bbc296c7534df9b3545f899aa7a0fb0c87f16.tar.gz postgresql-1a0bbc296c7534df9b3545f899aa7a0fb0c87f16.zip |
Improve comment about when to clean generated files.
-rw-r--r-- | src/interfaces/ecpg/preproc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/ecpg/preproc/Makefile b/src/interfaces/ecpg/preproc/Makefile index 75fc31f2b95..6a6932b92f7 100644 --- a/src/interfaces/ecpg/preproc/Makefile +++ b/src/interfaces/ecpg/preproc/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1998-2008, PostgreSQL Global Development Group # -# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.138 2008/11/14 17:11:40 meskes Exp $ +# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.139 2008/11/14 17:18:20 tgl Exp $ # #------------------------------------------------------------------------- @@ -77,8 +77,8 @@ clean distclean: # garbage from development @rm -f core a.out -# `make clean' does not remove preproc.c, preproc.h, or pgc.c since we -# want to ship those files in the distribution for people with -# inadequate tools. +# `make distclean' must not remove preproc.y, preproc.c, preproc.h, or pgc.c +# since we want to ship those files in the distribution for people with +# inadequate tools. Instead, `make maintainer-clean' will remove them. maintainer-clean: distclean rm -f $(srcdir)/preproc.y $(srcdir)/preproc.c $(srcdir)/preproc.h $(srcdir)/pgc.c |