summaryrefslogtreecommitdiff
path: root/src/backend/bootstrap/Makefile
diff options
context:
space:
mode:
authorPeter Eisentraut2007-01-20 17:16:17 +0000
committerPeter Eisentraut2007-01-20 17:16:17 +0000
commit2cc01004c620c4da07ec818d842d7e7fae162774 (patch)
tree8dca267dc3d0257a1715062ed1e2229bcb08f597 /src/backend/bootstrap/Makefile
parent64230a9f28e607110ee1e97eeb1e7f615e66eb78 (diff)
Remove remains of old depend target.
Diffstat (limited to 'src/backend/bootstrap/Makefile')
-rw-r--r--src/backend/bootstrap/Makefile12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/backend/bootstrap/Makefile b/src/backend/bootstrap/Makefile
index ed73205fd3b..314826e4f4b 100644
--- a/src/backend/bootstrap/Makefile
+++ b/src/backend/bootstrap/Makefile
@@ -2,7 +2,7 @@
#
# Makefile for the bootstrap module
#
-# $PostgreSQL: pgsql/src/backend/bootstrap/Makefile,v 1.34 2006/03/07 01:03:12 tgl Exp $
+# $PostgreSQL: pgsql/src/backend/bootstrap/Makefile,v 1.35 2007/01/20 17:16:11 petere Exp $
#
#-------------------------------------------------------------------------
@@ -53,13 +53,3 @@ clean:
rm -f SUBSYS.o $(OBJS)
# And the garbage that might have been left behind by partial build:
@rm -f y.tab.h y.tab.c y.output lex.yy.c
-
-
-# This is unusual: We actually have to build some of the parts before
-# we know what the header file dependencies are.
-dep depend: bootparse.c bootscanner.c bootstrap_tokens.h
- $(CC) -MM $(CFLAGS) *.c >depend
-
-ifeq (depend,$(wildcard depend))
-include depend
-endif