diff options
Diffstat (limited to 'src/backend/bootstrap/Makefile')
-rw-r--r-- | src/backend/bootstrap/Makefile | 12 |
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 |