Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 937aef3

Browse files
committed
Ensure that src/tutorial gets cleaned by top-level make clean.
1 parent 65b6868 commit 937aef3

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $Header: /cvsroot/pgsql/src/Makefile,v 1.26 2002/07/27 20:10:04 petere Exp $
7+
# $Header: /cvsroot/pgsql/src/Makefile,v 1.27 2002/07/30 17:47:58 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -32,6 +32,7 @@ clean:
3232
$(MAKE) -C bin $@
3333
$(MAKE) -C pl $@
3434
$(MAKE) -C test $@
35+
$(MAKE) -C tutorial $@
3536

3637
distclean maintainer-clean:
3738
-$(MAKE) -C port $@
@@ -41,4 +42,5 @@ distclean maintainer-clean:
4142
-$(MAKE) -C bin $@
4243
-$(MAKE) -C pl $@
4344
-$(MAKE) -C test $@
45+
-$(MAKE) -C tutorial $@
4446
rm -f Makefile.port Makefile.global

src/tutorial/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for tutorial
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.14 2001/10/26 20:45:33 tgl Exp $
7+
# $Header: /cvsroot/pgsql/src/tutorial/Makefile,v 1.15 2002/07/30 17:47:58 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -30,5 +30,5 @@ all: $(DLOBJS) $(QUERIES)
3030
C=`pwd`; \
3131
sed -e "s:_OBJWD_:$$C:g" < $< > $@
3232

33-
clean:
33+
clean distclean maintainer-clean:
3434
rm -f $(DLOBJS) $(QUERIES)

0 commit comments

Comments
 (0)