diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-07 00:48:07 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-07 00:48:07 +0000 |
commit | 48cf2957421e132e999660c5fbb9fb0cc017b5b6 (patch) | |
tree | 79ecfa388659a60484cb28edac8af0fe86a7b874 /src | |
parent | 135fe1899d9816ff4a4058c8f7331f6e614ba0c3 (diff) | |
download | postgresql-48cf2957421e132e999660c5fbb9fb0cc017b5b6.tar.gz postgresql-48cf2957421e132e999660c5fbb9fb0cc017b5b6.zip |
'make clean' should NOT remove *~ files.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/preproc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/Makefile b/src/interfaces/ecpg/preproc/Makefile index 62b0143350e..752579c4644 100644 --- a/src/interfaces/ecpg/preproc/Makefile +++ b/src/interfaces/ecpg/preproc/Makefile @@ -4,7 +4,7 @@ # # Copyright (c) 1998-2006, PostgreSQL Global Development Group # -# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.119 2006/03/05 15:59:08 momjian Exp $ +# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.120 2006/03/07 00:48:07 tgl Exp $ # #------------------------------------------------------------------------- @@ -75,7 +75,7 @@ clean distclean: # garbage from partial builds @rm -f y.tab.c y.tab.h # garbage from development - @rm -f core a.out *~ *.output *.tab.c + @rm -f core a.out *.output *.tab.c # `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 |