summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2002-07-30 17:47:58 +0000
committerTom Lane2002-07-30 17:47:58 +0000
commit75e33d8422d4de9796eb31a5ded4406898e3de76 (patch)
tree482c8f38f0ca18378850b02495c8ba721e5acd30
parent6cc959d9f04b8b82e6baa84142000b28aa703a5a (diff)
Ensure that src/tutorial gets cleaned by top-level make clean.
-rw-r--r--src/Makefile2
-rw-r--r--src/tutorial/Makefile2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 4b24192b6a..95b0005167 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -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 129e1395c7..e8f35a64ea 100644
--- a/src/tutorial/Makefile
+++ b/src/tutorial/Makefile
@@ -30,5 +30,5 @@ all: $(DLOBJS) $(QUERIES)
C=`pwd`; \
sed -e "s:_OBJWD_:$$C:g" < $< > $@
-clean:
+clean distclean maintainer-clean:
rm -f $(DLOBJS) $(QUERIES)