diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2001-11-16 16:32:33 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2001-11-16 16:32:33 +0000 |
| commit | aff53b27f0942cf9a0dcc5b10dca528e88b0cabf (patch) | |
| tree | 662be25b87828f619e0643fe295f92be8f45c749 /contrib/cube/Makefile | |
| parent | 7c50767f08a37d10638a6f38d0b4f42c1956e214 (diff) | |
| download | postgresql-aff53b27f0942cf9a0dcc5b10dca528e88b0cabf.tar.gz | |
Make the yacc rules safe for parallel make. See discussion on pgsql-patches
and comment in src/backend/parser/Makefile for the technical details.
Diffstat (limited to 'contrib/cube/Makefile')
| -rw-r--r-- | contrib/cube/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/cube/Makefile b/contrib/cube/Makefile index 1622843702..1bf47b90e9 100644 --- a/contrib/cube/Makefile +++ b/contrib/cube/Makefile @@ -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 |
