1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +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/seg/Makefile,v 1.5 2001/09/06 10:49:30 petere Exp $
# $Header: /cvsroot/pgsql/contrib/seg/Makefile,v 1.6 2001/11/16 16:32:33 petere Exp $
subdir = contrib/seg
top_builddir = ../..
@ -11,7 +11,9 @@ DOCS = README.seg
REGRESS = seg
segparse.c segparse.h: segparse.y
segparse.c: segparse.h ;
segparse.h: segparse.y
ifdef YACC
$(YACC) -d $(YFLAGS) -p seg_yy $<
mv -f y.tab.c segparse.c