OSDN Git Service

From: "Michael J. Maravillo" <mmj@philonline.com>
authorMarc G. Fournier <scrappy@hub.org>
Sat, 17 Jan 1998 23:39:35 +0000 (23:39 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 17 Jan 1998 23:39:35 +0000 (23:39 +0000)
This patch makes it possible to do a "real" make distclean (back to its
fresh state) on the distribution after compilation, regression testing,
etc.

contrib/spi/Makefile
src/GNUmakefile.in
src/interfaces/libpq/Makefile.in
src/test/regress/GNUmakefile
src/test/regress/expected/Makefile

index 4a07214..d0c4af5 100644 (file)
@@ -33,4 +33,4 @@ $(CONTRIBDIR):
            -e "s:_DLSUFFIX_:$(DLSUFFIX):g" < $< > $@
 
 clean: 
-       rm -f $(TARGETS)
+       rm -f $(TARGETS) *.o
index aa8f913..c421142 100644 (file)
@@ -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 \
index 44eb0bf..dd9c774 100644 (file)
@@ -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
index 93f18a1..90080e2 100644 (file)
@@ -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
index c398e18..b0f75b2 100644 (file)
@@ -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)