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.
36 lines
694 B
Makefile
36 lines
694 B
Makefile
# $Header: /cvsroot/pgsql/contrib/seg/Makefile,v 1.6 2001/11/16 16:32:33 petere Exp $
|
|
|
|
subdir = contrib/seg
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
MODULE_big = seg
|
|
OBJS = seg.o segparse.o segscan.o buffer.o
|
|
DATA_built = seg.sql
|
|
DOCS = README.seg
|
|
REGRESS = seg
|
|
|
|
|
|
segparse.c: segparse.h ;
|
|
|
|
segparse.h: segparse.y
|
|
ifdef YACC
|
|
$(YACC) -d $(YFLAGS) -p seg_yy $<
|
|
mv -f y.tab.c segparse.c
|
|
mv -f y.tab.h segparse.h
|
|
else
|
|
@$(missing) bison $< $@
|
|
endif
|
|
|
|
segscan.c: segscan.l
|
|
ifdef FLEX
|
|
$(FLEX) $(FLEXFLAGS) -Pseg_yy -o'$@' $<
|
|
else
|
|
@$(missing) flex $< $@
|
|
endif
|
|
|
|
EXTRA_CLEAN = segparse.c segparse.h segscan.c y.tab.c y.tab.h
|
|
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|