2010-09-21 00:08:53 +04:00
|
|
|
# contrib/passwordcheck/Makefile
|
2009-11-19 00:57:56 +03:00
|
|
|
|
|
|
|
MODULE_big = passwordcheck
|
2014-07-14 22:07:52 +04:00
|
|
|
OBJS = passwordcheck.o $(WIN32RES)
|
|
|
|
PGFILEDESC = "passwordcheck - strengthen user password checks"
|
2009-11-19 00:57:56 +03:00
|
|
|
|
|
|
|
# uncomment the following two lines to enable cracklib support
|
|
|
|
# PG_CPPFLAGS = -DUSE_CRACKLIB '-DCRACKLIB_DICTPATH="/usr/lib/cracklib_dict"'
|
|
|
|
# SHLIB_LINK = -lcrack
|
|
|
|
|
2017-08-12 04:04:04 +03:00
|
|
|
REGRESS = passwordcheck
|
|
|
|
|
2009-11-19 00:57:56 +03:00
|
|
|
ifdef USE_PGXS
|
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
include $(PGXS)
|
|
|
|
else
|
|
|
|
subdir = contrib/passwordcheck
|
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
endif
|