pguri/Makefile

21 lines
509 B
Makefile
Raw Permalink Normal View History

2015-02-18 04:23:18 +00:00
PG_CONFIG = pg_config
PKG_CONFIG = pkg-config
2015-03-13 03:18:58 +00:00
EXTENSION = uri
MODULE_big = uri
OBJS = uri.o
DATA = uri--0.sql uri--1.sql uri--0--1.sql
2015-02-18 04:23:18 +00:00
ifeq (no,$(shell $(PKG_CONFIG) liburiparser || echo no))
$(warning liburiparser not registed with pkg-config, build might fail)
endif
PG_CPPFLAGS += $(shell $(PKG_CONFIG) --cflags-only-I liburiparser)
SHLIB_LINK += $(shell $(PKG_CONFIG) --libs liburiparser)
2015-10-03 04:31:37 +00:00
REGRESS = init test escape
2015-02-18 04:23:18 +00:00
REGRESS_OPTS = --inputdir=test
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)