Commit 937aef35 authored by Tom Lane's avatar Tom Lane

Ensure that src/tutorial gets cleaned by top-level make clean.

parent 65b6868b
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
# Copyright (c) 1994, Regents of the University of California # 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: ...@@ -32,6 +32,7 @@ clean:
$(MAKE) -C bin $@ $(MAKE) -C bin $@
$(MAKE) -C pl $@ $(MAKE) -C pl $@
$(MAKE) -C test $@ $(MAKE) -C test $@
$(MAKE) -C tutorial $@
distclean maintainer-clean: distclean maintainer-clean:
-$(MAKE) -C port $@ -$(MAKE) -C port $@
...@@ -41,4 +42,5 @@ distclean maintainer-clean: ...@@ -41,4 +42,5 @@ distclean maintainer-clean:
-$(MAKE) -C bin $@ -$(MAKE) -C bin $@
-$(MAKE) -C pl $@ -$(MAKE) -C pl $@
-$(MAKE) -C test $@ -$(MAKE) -C test $@
-$(MAKE) -C tutorial $@
rm -f Makefile.port Makefile.global rm -f Makefile.port Makefile.global
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# Makefile for tutorial # Makefile for tutorial
# #
# IDENTIFICATION # 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) ...@@ -30,5 +30,5 @@ all: $(DLOBJS) $(QUERIES)
C=`pwd`; \ C=`pwd`; \
sed -e "s:_OBJWD_:$$C:g" < $< > $@ sed -e "s:_OBJWD_:$$C:g" < $< > $@
clean: clean distclean maintainer-clean:
rm -f $(DLOBJS) $(QUERIES) rm -f $(DLOBJS) $(QUERIES)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment