Skip to content

Commit 3d18ca7

Browse files
author
Thomas G. Lockhart
committed
Start shipping gram.y products gram.c and parse.h to avoid having to build
them from scratch. gram.y has now grown so that some non-bison yaccs (including FreeBSDs) run out of room and quit.
1 parent ca45412 commit 3d18ca7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/backend/parser/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Makefile for parser
55
#
66
# IDENTIFICATION
7-
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.13 1997/12/20 00:24:55 scrappy Exp $
7+
# $Header: /cvsroot/pgsql/src/backend/parser/Makefile,v 1.14 1998/02/18 07:37:05 thomas Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -53,8 +53,10 @@ dep: gram.c scan.c
5353
# Remove scan.c from the clean since we want to avoid rebuilding when using
5454
# the original source distribution. This should help Solaris machines whose
5555
# lex has trouble with exclusive states.
56+
# Remove gram.c, parse.h from the clean since we have now started to exceed
57+
# internal limits for some non-bison yaccs. - thomas 1998-02-17
5658
clean:
57-
rm -f SUBSYS.o $(OBJS) gram.c parse.h # scan.c
59+
rm -f SUBSYS.o $(OBJS) # gram.c parse.h # scan.c
5860
# And the garbage that might have been left behind by partial build:
5961
rm -f y.tab.c y.tab.h lex.yy.c
6062

0 commit comments

Comments
 (0)