Thanks to visit codestin.com
Credit goes to github.com

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

0 commit comments

Comments
 (0)