forked from engobi/redis_fdw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
46 lines (38 loc) · 1.2 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
##########################################################################
#
# foreign-data wrapper for Redis
#
# Copyright (c) 2011,2013 PostgreSQL Global Development Group
#
# This software is released under the PostgreSQL Licence
#
# Authors: Dave Page <dpage@pgadmin.org>
# Andrew Dunstan <andrew@dunslane.net>
#
# IDENTIFICATION
# redis_fdw/Makefile
#
##########################################################################
MODULE_big = redis_fdw
OBJS = redis_fdw.o
EXTENSION = redis_fdw
DATA = redis_fdw--1.0.sql
REGRESS = redis_fdw
REGRESS_OPTS = --inputdir=test --outputdir=test \
--load-extension=hstore \
--load-extension=$(EXTENSION)
EXTRA_CLEAN = sql/redis_fdw.sql expected/redis_fdw.out
SHLIB_LINK += -lhiredis
USE_PGXS = 1
ifeq ($(USE_PGXS),1)
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/redis_fdw
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
# we put all the tests in a test subdir, but pgxs expects us not to, darn it
override pg_regress_clean_files = test/results/ test/regression.diffs test/regression.out tmp_check/ log/