mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
cab9437a43
(usually bison output files), not as standalone files. This hack works around flex's insistence on including <stdio.h> before we are able to include postgres.h; postgres.h will already be read before the compiler starts to read the flex output file. Needed for largefile support on some platforms.
40 lines
771 B
Makefile
40 lines
771 B
Makefile
# $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.7 2002/11/01 22:52:33 tgl Exp $
|
|
|
|
subdir = contrib/cube
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
MODULE_big = cube
|
|
OBJS= cube.o cubeparse.o buffer.o
|
|
|
|
DATA_built = cube.sql
|
|
DOCS = README.cube
|
|
REGRESS = cube
|
|
|
|
|
|
# cubescan is compiled as part of cubeparse
|
|
cubeparse.o: cubescan.c
|
|
|
|
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
|