mirror of
https://github.com/postgres/postgres.git
synced 2025-08-08 06:02:22 +03:00
error messages reasonably independent of the bison version used to build cubeparse.c. Needed to get this branch passing on buildfarm.
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.6.2.1 2005/07/16 19:27:20 tgl Exp $
|
|
|
|
subdir = contrib/cube
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
MODULE_big = cube
|
|
OBJS= cube.o cubeparse.o cubescan.o buffer.o
|
|
|
|
DATA_built = cube.sql
|
|
DOCS = README.cube
|
|
REGRESS = cube
|
|
|
|
|
|
cubeparse.c: cubeparse.h ;
|
|
|
|
# The sed hack is so that we can get the same error messages with
|
|
# bison 1.875 and later as we did with earlier bisons. Eventually,
|
|
# I suppose, we should re-standardize on "syntax error" --- in which
|
|
# case flip the sed translation, but don't remove it.
|
|
|
|
cubeparse.h: cubeparse.y
|
|
ifdef YACC
|
|
$(YACC) -d $(YFLAGS) -p cube_yy $<
|
|
sed -e 's/"syntax error/"parse error/' < y.tab.c > cubeparse.c
|
|
mv -f y.tab.h cubeparse.h
|
|
rm -f y.tab.c
|
|
else
|
|
@$(missing) bison $< $@
|
|
endif
|
|
|
|
cubescan.c: cubescan.l
|
|
ifdef FLEX
|
|
$(FLEX) $(FLEXFLAGS) -Pcube_yy -o'$@' $<
|
|
else
|
|
@$(missing) flex $< $@
|
|
endif
|
|
|
|
EXTRA_CLEAN = cubeparse.c cubeparse.h cubescan.c y.tab.c y.tab.h
|
|
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|