Skip to content

Commit 2cc0100

Browse files
committed
Remove remains of old depend target.
1 parent 64230a9 commit 2cc0100

File tree

60 files changed

+65
-420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+65
-420
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# GNUmakefile won't exist yet, so we catch that case as well.
1212

1313

14-
all check install installdirs installcheck installcheck-parallel uninstall dep depend clean distclean maintainer-clean:
14+
all check install installdirs installcheck installcheck-parallel uninstall clean distclean maintainer-clean:
1515
@if [ ! -f GNUmakefile ] ; then \
1616
echo "You need to run the 'configure' program first. See the file"; \
1717
echo "'INSTALL' for installation instructions." ; \

src/Makefile

Lines changed: 2 additions & 2 deletions
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-
# $PostgreSQL: pgsql/src/Makefile,v 1.40 2006/06/22 23:50:35 tgl Exp $
7+
# $PostgreSQL: pgsql/src/Makefile,v 1.41 2007/01/20 17:16:09 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -13,7 +13,7 @@ top_builddir = ..
1313
include Makefile.global
1414

1515

16-
all install installdirs uninstall dep depend distprep:
16+
all install installdirs uninstall distprep:
1717
$(MAKE) -C port $@
1818
$(MAKE) -C timezone $@
1919
$(MAKE) -C backend $@

src/backend/Makefile

Lines changed: 1 addition & 4 deletions
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-
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.120 2006/10/08 17:15:33 tgl Exp $
7+
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.121 2007/01/20 17:16:10 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -261,6 +261,3 @@ maintainer-clean: distclean
261261
.PHONY: quick
262262
quick: $(OBJS)
263263
$(CC) $(CFLAGS) $(LDFLAGS) $(export_dynamic) $^ $(LIBS) -o postgres
264-
265-
depend dep: $(top_srcdir)/src/include/parser/parse.h $(top_builddir)/src/include/utils/fmgroids.h
266-
for i in $(DIRS); do $(MAKE) -C $$i $@; done

src/backend/access/Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# Makefile for the access methods module
33
#
4-
# $PostgreSQL: pgsql/src/backend/access/Makefile,v 1.11 2006/05/02 11:28:54 teodor Exp $
4+
# $PostgreSQL: pgsql/src/backend/access/Makefile,v 1.12 2007/01/20 17:16:10 petere Exp $
55
#
66

77
subdir = src/backend/access
@@ -25,6 +25,3 @@ $(SUBDIRS:%=%-recursive):
2525
clean:
2626
for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@ || exit; done
2727
rm -f SUBSYS.o
28-
29-
dep depend:
30-
for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@ || exit; done

src/backend/access/common/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/common
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/access/common/Makefile,v 1.22 2006/07/03 22:45:36 tgl Exp $
7+
# $PostgreSQL: pgsql/src/backend/access/common/Makefile,v 1.23 2007/01/20 17:16:10 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -19,12 +19,5 @@ all: SUBSYS.o
1919
SUBSYS.o: $(OBJS)
2020
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2121

22-
dep depend:
23-
$(CC) -MM $(CFLAGS) *.c >depend
24-
2522
clean:
2623
rm -f SUBSYS.o $(OBJS)
27-
28-
ifeq (depend,$(wildcard depend))
29-
include depend
30-
endif

src/backend/access/gin/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/gin
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/access/gin/Makefile,v 1.1 2006/05/02 11:28:54 teodor Exp $
7+
# $PostgreSQL: pgsql/src/backend/access/gin/Makefile,v 1.2 2007/01/20 17:16:10 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -21,12 +21,5 @@ all: SUBSYS.o
2121
SUBSYS.o: $(OBJS)
2222
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2323

24-
depend dep:
25-
$(CC) -MM $(CFLAGS) *.c >depend
26-
2724
clean:
2825
rm -f SUBSYS.o $(OBJS)
29-
30-
ifeq (depend,$(wildcard depend))
31-
include depend
32-
endif

src/backend/access/gist/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/gist
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/access/gist/Makefile,v 1.16 2006/06/28 12:00:13 teodor Exp $
7+
# $PostgreSQL: pgsql/src/backend/access/gist/Makefile,v 1.17 2007/01/20 17:16:10 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -20,12 +20,5 @@ all: SUBSYS.o
2020
SUBSYS.o: $(OBJS)
2121
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2222

23-
depend dep:
24-
$(CC) -MM $(CFLAGS) *.c >depend
25-
2623
clean:
2724
rm -f SUBSYS.o $(OBJS)
28-
29-
ifeq (depend,$(wildcard depend))
30-
include depend
31-
endif

src/backend/access/hash/Makefile

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/hash
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/access/hash/Makefile,v 1.12 2003/11/29 19:51:40 pgsql Exp $
7+
# $PostgreSQL: pgsql/src/backend/access/hash/Makefile,v 1.13 2007/01/20 17:16:10 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -20,13 +20,5 @@ all: SUBSYS.o
2020
SUBSYS.o: $(OBJS)
2121
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2222

23-
depend dep:
24-
$(CC) -MM $(CFLAGS) *.c >depend
25-
2623
clean:
2724
rm -f SUBSYS.o $(OBJS)
28-
29-
ifeq (depend,$(wildcard depend))
30-
include depend
31-
endif
32-

src/backend/access/heap/Makefile

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/heap
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/access/heap/Makefile,v 1.13 2003/11/29 19:51:40 pgsql Exp $
7+
# $PostgreSQL: pgsql/src/backend/access/heap/Makefile,v 1.14 2007/01/20 17:16:10 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -19,13 +19,5 @@ all: SUBSYS.o
1919
SUBSYS.o: $(OBJS)
2020
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2121

22-
depend dep:
23-
$(CC) -MM $(CFLAGS) *.c >depend
24-
2522
clean:
2623
rm -f SUBSYS.o $(OBJS)
27-
28-
ifeq (depend,$(wildcard depend))
29-
include depend
30-
endif
31-

src/backend/access/index/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/index
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/access/index/Makefile,v 1.12 2003/11/29 19:51:40 pgsql Exp $
7+
# $PostgreSQL: pgsql/src/backend/access/index/Makefile,v 1.13 2007/01/20 17:16:10 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -19,12 +19,5 @@ all: SUBSYS.o
1919
SUBSYS.o: $(OBJS)
2020
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2121

22-
depend dep:
23-
$(CC) -MM $(CFLAGS) *.c >depend
24-
2522
clean:
2623
rm -f SUBSYS.o $(OBJS)
27-
28-
ifeq (depend,$(wildcard depend))
29-
include depend
30-
endif

src/backend/access/nbtree/Makefile

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for access/nbtree
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/access/nbtree/Makefile,v 1.14 2003/11/29 19:51:40 pgsql Exp $
7+
# $PostgreSQL: pgsql/src/backend/access/nbtree/Makefile,v 1.15 2007/01/20 17:16:10 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -20,13 +20,5 @@ all: SUBSYS.o
2020
SUBSYS.o: $(OBJS)
2121
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2222

23-
depend dep:
24-
$(CC) -MM $(CFLAGS) *.c >depend
25-
2623
clean:
2724
rm -f SUBSYS.o $(OBJS)
28-
29-
ifeq (depend,$(wildcard depend))
30-
include depend
31-
endif
32-

src/backend/bootstrap/Makefile

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Makefile for the bootstrap module
44
#
5-
# $PostgreSQL: pgsql/src/backend/bootstrap/Makefile,v 1.34 2006/03/07 01:03:12 tgl Exp $
5+
# $PostgreSQL: pgsql/src/backend/bootstrap/Makefile,v 1.35 2007/01/20 17:16:11 petere Exp $
66
#
77
#-------------------------------------------------------------------------
88

@@ -53,13 +53,3 @@ clean:
5353
rm -f SUBSYS.o $(OBJS)
5454
# And the garbage that might have been left behind by partial build:
5555
@rm -f y.tab.h y.tab.c y.output lex.yy.c
56-
57-
58-
# This is unusual: We actually have to build some of the parts before
59-
# we know what the header file dependencies are.
60-
dep depend: bootparse.c bootscanner.c bootstrap_tokens.h
61-
$(CC) -MM $(CFLAGS) *.c >depend
62-
63-
ifeq (depend,$(wildcard depend))
64-
include depend
65-
endif

src/backend/commands/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for backend/commands
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/commands/Makefile,v 1.34 2004/06/18 06:13:22 tgl Exp $
7+
# $PostgreSQL: pgsql/src/backend/commands/Makefile,v 1.35 2007/01/20 17:16:11 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -25,12 +25,5 @@ all: SUBSYS.o
2525
SUBSYS.o: $(OBJS)
2626
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2727

28-
depend dep:
29-
$(CC) -MM $(CFLAGS) *.c >depend
30-
3128
clean:
3229
rm -f SUBSYS.o $(OBJS)
33-
34-
ifeq (depend,$(wildcard depend))
35-
include depend
36-
endif

src/backend/executor/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for executor
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/executor/Makefile,v 1.24 2006/08/02 01:59:45 joe Exp $
7+
# $PostgreSQL: pgsql/src/backend/executor/Makefile,v 1.25 2007/01/20 17:16:11 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -28,12 +28,5 @@ all: SUBSYS.o
2828
SUBSYS.o: $(OBJS)
2929
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
3030

31-
depend dep:
32-
$(CC) -MM $(CFLAGS) *.c >depend
33-
3431
clean:
3532
rm -f SUBSYS.o $(OBJS)
36-
37-
ifeq (depend,$(wildcard depend))
38-
include depend
39-
endif

src/backend/lib/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for lib (miscellaneous stuff)
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/lib/Makefile,v 1.19 2004/04/25 18:23:56 neilc Exp $
7+
# $PostgreSQL: pgsql/src/backend/lib/Makefile,v 1.20 2007/01/20 17:16:11 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -19,12 +19,5 @@ all: SUBSYS.o
1919
SUBSYS.o: $(OBJS)
2020
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2121

22-
depend dep:
23-
$(CC) -MM $(CFLAGS) *.c >depend
24-
2522
clean:
2623
rm -f SUBSYS.o $(OBJS)
27-
28-
ifeq (depend,$(wildcard depend))
29-
include depend
30-
endif

src/backend/libpq/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for libpq subsystem (backend half of libpq interface)
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/libpq/Makefile,v 1.37 2003/11/29 19:51:49 pgsql Exp $
7+
# $PostgreSQL: pgsql/src/backend/libpq/Makefile,v 1.38 2007/01/20 17:16:11 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -23,12 +23,5 @@ all: SUBSYS.o
2323
SUBSYS.o: $(OBJS)
2424
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2525

26-
depend dep:
27-
$(CC) -MM $(CFLAGS) *.c >depend
28-
2926
clean:
3027
rm -f SUBSYS.o $(OBJS)
31-
32-
ifeq (depend,$(wildcard depend))
33-
include depend
34-
endif

src/backend/main/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for main
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/main/Makefile,v 1.10 2003/11/29 19:51:49 pgsql Exp $
7+
# $PostgreSQL: pgsql/src/backend/main/Makefile,v 1.11 2007/01/20 17:16:11 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -19,12 +19,5 @@ all: SUBSYS.o
1919
SUBSYS.o: $(OBJS)
2020
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2121

22-
depend dep:
23-
$(CC) -MM $(CFLAGS) *.c >depend
24-
2522
clean:
2623
rm -f SUBSYS.o $(OBJS)
27-
28-
ifeq (depend,$(wildcard depend))
29-
include depend
30-
endif

src/backend/nodes/Makefile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for backend/nodes
55
#
66
# IDENTIFICATION
7-
# $PostgreSQL: pgsql/src/backend/nodes/Makefile,v 1.18 2005/04/17 22:24:02 tgl Exp $
7+
# $PostgreSQL: pgsql/src/backend/nodes/Makefile,v 1.19 2007/01/20 17:16:11 petere Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -21,12 +21,5 @@ all: SUBSYS.o
2121
SUBSYS.o: $(OBJS)
2222
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
2323

24-
depend dep:
25-
$(CC) -MM $(CFLAGS) *.c >depend
26-
2724
clean:
2825
rm -f SUBSYS.o $(OBJS)
29-
30-
ifeq (depend,$(wildcard depend))
31-
include depend
32-
endif

src/backend/optimizer/Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# Makefile for optimizer
33
#
4-
# $PostgreSQL: pgsql/src/backend/optimizer/Makefile,v 1.11 2003/11/29 19:51:50 pgsql Exp $
4+
# $PostgreSQL: pgsql/src/backend/optimizer/Makefile,v 1.12 2007/01/20 17:16:11 petere Exp $
55
#
66

77
subdir = src/backend/optimizer
@@ -25,6 +25,3 @@ $(SUBDIRS:%=%-recursive):
2525
clean:
2626
for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@ || exit; done
2727
rm -f SUBSYS.o
28-
29-
dep depend:
30-
for dir in $(SUBDIRS); do $(MAKE) -C $$dir $@ || exit; done

0 commit comments

Comments
 (0)