1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Make the yacc rules safe for parallel make. See discussion on pgsql-patches

and comment in src/backend/parser/Makefile for the technical details.
This commit is contained in:
Peter Eisentraut
2001-11-16 16:32:33 +00:00
parent 7c50767f08
commit aff53b27f0
6 changed files with 38 additions and 17 deletions

View File

@ -1,4 +1,4 @@
# $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.5 2001/09/06 10:49:29 petere Exp $
# $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.6 2001/11/16 16:32:33 petere Exp $
subdir = contrib/cube
top_builddir = ../..
@ -12,7 +12,9 @@ DOCS = README.cube
REGRESS = cube
cubeparse.c cubeparse.h: cubeparse.y
cubeparse.c: cubeparse.h ;
cubeparse.h: cubeparse.y
ifdef YACC
$(YACC) -d $(YFLAGS) -p cube_yy $<
mv -f y.tab.c cubeparse.c