diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-02-28 18:45:17 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-02-28 18:45:17 +0000 |
commit | a4c18f553c50feb30e76ecfafde6598e9d461243 (patch) | |
tree | d5224515932388a3f0657446dab4c4a4fab1f7d0 /src | |
parent | 9b4b8e92ebe74c46d9e5fed33634f4abd77610fd (diff) | |
download | postgresql-a4c18f553c50feb30e76ecfafde6598e9d461243.tar.gz postgresql-a4c18f553c50feb30e76ecfafde6598e9d461243.zip |
Make sure anything configure related is removed on a distclean
Diffstat (limited to 'src')
-rw-r--r-- | src/GNUmakefile.in | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/GNUmakefile.in b/src/GNUmakefile.in index 29b3cfcb87a..b08f764dd70 100644 --- a/src/GNUmakefile.in +++ b/src/GNUmakefile.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.9 1997/02/28 18:34:58 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.10 1997/02/28 18:45:17 scrappy Exp $ # #------------------------------------------------------------------------- @@ -69,7 +69,18 @@ ifneq ($(wildcard man), ) endif distclean: clean - rm -f Makefile.global include/config.h GNUmakefile + rm -f Makefile.global \ + config.cache \ + config.status \ + config.log \ + GNUmakefile \ + Makefile.global \ + backend/port/Makefile \ + bin/psql/Makefile \ + bin/pg_dump/Makefile \ + include/config.h \ + include/os.h + .DEFAULT: @if test $(PORTNAME) = UNDEFINED; then \ |