diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-02-28 18:34:58 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-02-28 18:34:58 +0000 |
commit | 9b4b8e92ebe74c46d9e5fed33634f4abd77610fd (patch) | |
tree | 1443cba4749866059a07aa62a12f9d506235e452 /src | |
parent | 3ebe69c4c57a4e616966b5f0fbac8a1d8e411ec0 (diff) | |
download | postgresql-9b4b8e92ebe74c46d9e5fed33634f4abd77610fd.tar.gz postgresql-9b4b8e92ebe74c46d9e5fed33634f4abd77610fd.zip |
Create a distclean make directive to handle cleaning out configure
generated files, that shouldn't be removed on a make clean
Pointed out by half the hackers mailing list :)
Diffstat (limited to 'src')
-rw-r--r-- | src/GNUmakefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/GNUmakefile.in b/src/GNUmakefile.in index 65ea3b6ba8d..29b3cfcb87a 100644 --- a/src/GNUmakefile.in +++ b/src/GNUmakefile.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.8 1997/02/28 15:35:50 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.9 1997/02/28 18:34:58 scrappy Exp $ # #------------------------------------------------------------------------- @@ -67,6 +67,8 @@ endif ifneq ($(wildcard man), ) $(MAKE) -C man clean endif + +distclean: clean rm -f Makefile.global include/config.h GNUmakefile .DEFAULT: |