2010-09-20 22:08:53 +02:00
|
|
|
# contrib/isn/Makefile
|
2006-09-09 04:07:52 +00:00
|
|
|
|
|
|
|
MODULES = isn
|
2011-02-13 20:06:41 -05:00
|
|
|
|
|
|
|
EXTENSION = isn
|
2025-03-16 13:45:48 -04:00
|
|
|
DATA = isn--1.0--1.1.sql isn--1.1.sql \
|
|
|
|
isn--1.1--1.2.sql isn--1.2--1.3.sql
|
2014-07-14 14:07:52 -04:00
|
|
|
PGFILEDESC = "isn - data types for international product numbering standards"
|
2006-09-09 04:07:52 +00:00
|
|
|
|
2018-07-31 19:58:39 +01:00
|
|
|
# the other .h files are data tables, we don't install those
|
|
|
|
HEADERS_isn = isn.h
|
|
|
|
|
2015-08-02 22:12:33 +03:00
|
|
|
REGRESS = isn
|
|
|
|
|
2006-09-09 04:07:52 +00:00
|
|
|
ifdef USE_PGXS
|
2007-06-26 22:05:04 +00:00
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
2006-09-09 04:07:52 +00:00
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/isn
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
endif
|