summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2002-07-30 17:47:58 +0000
committerTom Lane2002-07-30 17:47:58 +0000
commit937aef354550224fc06f00cf74cdb104164222e3 (patch)
treeb8453524b063bfefea231915ff27952620e83501
parent65b6868b132a970ec1160e03833e9c117b05280f (diff)
Ensure that src/tutorial gets cleaned by top-level make clean.
-rw-r--r--src/Makefile4
-rw-r--r--src/tutorial/Makefile4
2 files changed, 5 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index 91a97df492..90603405d2 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -4,7 +4,7 @@
#
# Copyright (c) 1994, Regents of the University of California
#
-# $Header: /cvsroot/pgsql/src/Makefile,v 1.26 2002/07/27 20:10:04 petere Exp $
+# $Header: /cvsroot/pgsql/src/Makefile,v 1.27 2002/07/30 17:47:58 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -32,6 +32,7 @@ clean:
$(MAKE) -C bin $@
$(MAKE) -C pl $@
$(MAKE) -C test $@
+ $(MAKE) -C tutorial $@
distclean maintainer-clean:
-$(MAKE) -C port $@
@@ -41,4 +42,5 @@ distclean maintainer-clean:
-$(MAKE) -C bin $@
-$(MAKE) -C pl $@
-$(MAKE) -C test $@
+ -$(MAKE) -C tutorial $@
rm -f Makefile.port Makefile.global
diff --git a/src/tutorial/Makefile b/src/tutorial/Makefile
index 07ed26f3de..2e85fbc38a 100644
--- a/src/tutorial/Makefile
+++ b/src/tutorial/Makefile
@@ -4,7 +4,7 @@
# Makefile for tutorial
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.14 2001/10/26 20:45:33 tgl Exp $
+# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.15 2002/07/30 17:47:58 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -30,5 +30,5 @@ all: $(DLOBJS) $(QUERIES)
C=`pwd`; \
sed -e "s:_OBJWD_:$$C:g" < $< > $@
-clean:
+clean distclean maintainer-clean:
rm -f $(DLOBJS) $(QUERIES)