Commit ee420c04 authored by Marc G. Fournier's avatar Marc G. Fournier

|This fixes the bug introduced yesterday that causes "not found" errors

|with gram.c and parser.h.
|
|--
|Bryan Henderson                                    Phone 408-227-6803
|San Jose, California
|
parent 83298ee3
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.3 1996/09/20 08:34:10 scrappy Exp $ # $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.4 1996/09/21 06:29:09 scrappy Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -17,10 +17,9 @@ VPATH:= $(VPATH):$(CURDIR)/parser ...@@ -17,10 +17,9 @@ VPATH:= $(VPATH):$(CURDIR)/parser
PARSEYACCS= gram.c PARSEYACCS= gram.c
$(PARSEYACCS): gram.y $(PARSEYACCS): gram.y
cd $(objdir)
$(YACC) $(YFLAGS) $< $(YACC) $(YFLAGS) $<
mv y.tab.c gram.c mv y.tab.c $(objdir)/gram.c
mv y.tab.h parse.h mv y.tab.h $(objdir)/parse.h
$(objdir)/gram.o: gram.c $(objdir)/gram.o: gram.c
$(cc_inobjdir) $(cc_inobjdir)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment