mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
b09c248bdd
installations whose pg_config program does not appear first in the PATH. Per gripe from Eddie Stanley and subsequent discussions with Fabien Coelho and others.
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# $PostgreSQL: pgsql/contrib/seg/Makefile,v 1.19 2007/06/26 22:05:03 tgl Exp $
|
|
|
|
MODULE_big = seg
|
|
OBJS = seg.o segparse.o
|
|
DATA_built = seg.sql
|
|
DATA = uninstall_seg.sql
|
|
DOCS = README.seg
|
|
REGRESS = seg
|
|
|
|
EXTRA_CLEAN = y.tab.c y.tab.h
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/seg
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|
|
|
|
|
|
# segscan is compiled as part of segparse
|
|
segparse.o: $(srcdir)/segscan.c
|
|
|
|
# See notes in src/backend/parser/Makefile about the following two rules
|
|
|
|
$(srcdir)/segparse.c: $(srcdir)/segparse.h ;
|
|
|
|
$(srcdir)/segparse.h: segparse.y
|
|
ifdef YACC
|
|
$(YACC) -d $(YFLAGS) $<
|
|
mv -f y.tab.c $(srcdir)/segparse.c
|
|
mv -f y.tab.h $(srcdir)/segparse.h
|
|
else
|
|
@$(missing) bison $< $@
|
|
endif
|
|
|
|
$(srcdir)/segscan.c: segscan.l
|
|
ifdef FLEX
|
|
$(FLEX) $(FLEXFLAGS) -o'$@' $<
|
|
else
|
|
@$(missing) flex $< $@
|
|
endif
|
|
|
|
distprep: $(srcdir)/segparse.c $(srcdir)/segparse.h $(srcdir)/segscan.c
|
|
|
|
maintainer-clean:
|
|
rm -f $(srcdir)/segparse.c $(srcdir)/segparse.h $(srcdir)/segscan.c
|