20 lines
465 B
Makefile
20 lines
465 B
Makefile
# $PostgreSQL: pgsql/contrib/tablefunc/Makefile,v 1.7 2007/02/09 17:04:00 petere Exp $
|
|
|
|
MODULES = tablefunc
|
|
DATA_built = tablefunc.sql
|
|
DATA = uninstall_tablefunc.sql
|
|
DOCS = README.tablefunc
|
|
REGRESS = tablefunc
|
|
|
|
SHLIB_LINK += $(filter -lm, $(LIBS))
|
|
|
|
ifdef USE_PGXS
|
|
PGXS := $(shell pg_config --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/tablefunc
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|