From: Marc G. Fournier Date: Sat, 17 Jan 1998 23:39:35 +0000 (+0000) Subject: From: "Michael J. Maravillo" X-Git-Tag: REL6_3~334 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8169769ee5104d4bde9a713beefdd133658f3a0f;p=postgresql From: "Michael J. Maravillo" This patch makes it possible to do a "real" make distclean (back to its fresh state) on the distribution after compilation, regression testing, etc. --- diff --git a/contrib/spi/Makefile b/contrib/spi/Makefile index 4a0721439b..d0c4af56bc 100644 --- a/contrib/spi/Makefile +++ b/contrib/spi/Makefile @@ -33,4 +33,4 @@ $(CONTRIBDIR): -e "s:_DLSUFFIX_:$(DLSUFFIX):g" < $< > $@ clean: - rm -f $(TARGETS) + rm -f $(TARGETS) *.o diff --git a/src/GNUmakefile.in b/src/GNUmakefile.in index aa8f913196..c421142ebb 100644 --- a/src/GNUmakefile.in +++ b/src/GNUmakefile.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.23 1998/01/13 04:43:22 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.24 1998/01/17 23:39:05 scrappy Exp $ # #------------------------------------------------------------------------- @@ -62,6 +62,7 @@ clean: $(MAKE) -C interfaces clean $(MAKE) -C bin clean $(MAKE) -C test clean + $(MAKE) -C ../contrib/spi clean ifneq ($(wildcard man), ) $(MAKE) -C man clean endif @@ -78,6 +79,9 @@ distclean: clean bin/pg_dump/Makefile \ bin/pg_version/Makefile \ include/config.h \ + include/dynloader.h \ + backend/port/tas.s \ + backend/port/dynloader.c \ backend/utils/Gen_fmgrtab.sh \ interfaces/libpq/Makefile \ interfaces/libpgtcl/Makefile \ diff --git a/src/interfaces/libpq/Makefile.in b/src/interfaces/libpq/Makefile.in index 44eb0bf6ae..dd9c774a11 100644 --- a/src/interfaces/libpq/Makefile.in +++ b/src/interfaces/libpq/Makefile.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.3 1998/01/17 23:33:39 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.4 1998/01/17 23:39:11 scrappy Exp $ # #------------------------------------------------------------------------- @@ -166,7 +166,7 @@ depend dep: .PHONY: clean clean: - rm -f libpq.a $(shlib) $(OBJS) c.h + rm -f libpq.a $(shlib) $(OBJS) c.h dllist.c pqcomprim.c libpq.so ifeq (depend,$(wildcard depend)) include depend diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile index 93f18a11b5..90080e298b 100644 --- a/src/test/regress/GNUmakefile +++ b/src/test/regress/GNUmakefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.13 1998/01/01 05:37:29 thomas Exp $ +# $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.14 1998/01/17 23:39:22 scrappy Exp $ # #------------------------------------------------------------------------- @@ -54,7 +54,7 @@ runtest: $(INFILES) @echo "ACTUAL RESULTS OF REGRESSION TEST ARE NOW IN FILE regress.out" clean: - rm -f $(INFILES) + rm -f $(INFILES) regress.out $(MAKE) -C sql clean $(MAKE) -C expected clean $(MAKE) -C results clean diff --git a/src/test/regress/expected/Makefile b/src/test/regress/expected/Makefile index c398e18947..b0f75b2bd4 100644 --- a/src/test/regress/expected/Makefile +++ b/src/test/regress/expected/Makefile @@ -7,11 +7,11 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/test/regress/expected/Attic/Makefile,v 1.2 1997/08/28 04:49:17 vadim Exp $ +# $Header: /cvsroot/pgsql/src/test/regress/expected/Attic/Makefile,v 1.3 1998/01/17 23:39:35 scrappy Exp $ # #------------------------------------------------------------------------- -CLFILES= create_function_1.out create_function_2.out copy.out constraints.out +CLFILES= create_function_1.out create_function_2.out copy.out constraints.out misc.out clean: rm -f $(CLFILES)