2005-09-27 21:13:14 +04:00
|
|
|
# $PostgreSQL: pgsql/contrib/spi/Makefile,v 1.26 2005/09/27 17:13:10 tgl Exp $
|
1997-09-11 10:51:23 +04:00
|
|
|
|
2001-09-06 14:49:30 +04:00
|
|
|
MODULES = autoinc insert_username moddatetime refint timetravel
|
|
|
|
DATA_built = $(addsuffix .sql, $(MODULES))
|
|
|
|
DOCS = README.spi $(addsuffix .example, $(MODULES))
|
1997-09-11 13:08:31 +04:00
|
|
|
|
2002-10-03 22:40:02 +04:00
|
|
|
# this is needed for the regression tests;
|
|
|
|
# comment out if you want a quieter refint package for other uses
|
2001-09-06 14:49:30 +04:00
|
|
|
PG_CPPFLAGS = -DREFINT_VERBOSE
|
1997-09-11 10:51:23 +04:00
|
|
|
|
2004-08-21 00:13:10 +04:00
|
|
|
ifdef USE_PGXS
|
2005-09-27 21:13:14 +04:00
|
|
|
PGXS := $(shell pg_config --pgxs)
|
2004-08-21 00:13:10 +04:00
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/spi
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
2001-09-06 14:49:30 +04:00
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
2004-08-21 00:13:10 +04:00
|
|
|
endif
|
2004-11-17 20:46:24 +03:00
|
|
|
|
|
|
|
SHLIB_LINK += -L$(top_builddir)/src/port -lpgport
|