slight fix to Makefile.inc so that gram.c/parse.h get put into
authorMarc G. Fournier <scrappy@hub.org>
Sat, 21 Sep 1996 07:47:48 +0000 (07:47 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 21 Sep 1996 07:47:48 +0000 (07:47 +0000)
backend/obj instead of into backend

there is probably a better fix for this, but looking at the Makefile.inc,
I can't find a reason *why* it isn't putting them into obj...

src/backend/parser/Makefile.inc

index df1962d15d9453d05f498f834bdd7a96023d3be5..b00ca9e364fb0640852fc1b3f434bbcdfe096343 100644 (file)
@@ -7,7 +7,7 @@
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.2.2.1 1996/09/21 06:06:49 scrappy Exp $
+#    $Header: /cvsroot/pgsql/src/backend/parser/Attic/Makefile.inc,v 1.2.2.2 1996/09/21 07:47:48 scrappy Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -19,8 +19,8 @@ PARSEYACCS= gram.c
 $(PARSEYACCS): gram.y
        cd $(objdir) 
        $(YACC) $(YFLAGS) $<
-       mv y.tab.c gram.c
-       mv y.tab.h parse.h
+       mv y.tab.c $(objdir)/gram.c
+       mv y.tab.h $(objdir)/parse.h
 
 $(objdir)/gram.o: gram.c
        $(cc_inobjdir)