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