mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
17cc78ef01
written a generic framework of rules that the contrib makefiles can use instead of writing their own each time. You only need to set a few variables and off you go.
35 lines
700 B
Makefile
35 lines
700 B
Makefile
# $Header: /cvsroot/pgsql/contrib/cube/Makefile,v 1.5 2001/09/06 10:49:29 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.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
|