PostgreSQL-IBAN/Makefile

14 lines
237 B
Makefile
Raw Normal View History

MODULES = iban
2016-03-01 15:56:02 +00:00
EXTENSION = iban
DATA = iban--1.0.0.sql
PGFILEDESC = "iban - IBAN datatype and functions"
2016-03-01 15:56:02 +00:00
PG_CXXFLAGS = -std=c++14 -fPIC
2016-03-01 18:42:19 +00:00
PG_LDFLAGS = -lstdc++
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)