summaryrefslogtreecommitdiff
path: root/contrib/chkpass/Makefile
blob: d0f3ba8c7e00ebabe773f097eab583c994a8d05d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# $PostgreSQL$

MODULE_big = chkpass
OBJS = chkpass.o
SHLIB_LINK = $(filter -lcrypt, $(LIBS))
DATA_built = chkpass.sql
DATA = uninstall_chkpass.sql

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/chkpass
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif