mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +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.
34 lines
679 B
Makefile
34 lines
679 B
Makefile
# $Header: /cvsroot/pgsql/contrib/seg/Makefile,v 1.5 2001/09/06 10:49:30 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.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
|