mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
aff53b27f0
and comment in src/backend/parser/Makefile for the technical details.
37 lines
716 B
Makefile
37 lines
716 B
Makefile
# $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.6 2001/11/16 16:32:33 petere 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 ;
|
|
|
|
cubeparse.h: cubeparse.y
|
|
ifdef YACC
|
|
$(YACC) -d $(YFLAGS) -p cube_yy $<
|
|
mv -f y.tab.c cubeparse.c
|
|
mv -f y.tab.h cubeparse.h
|
|
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
|