mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
20 lines
550 B
Makefile
20 lines
550 B
Makefile
|
# $PostgreSQL: pgsql/contrib/passwordcheck/Makefile,v 1.1 2009/11/18 21:57:56 tgl Exp $
|
||
|
|
||
|
MODULE_big = passwordcheck
|
||
|
OBJS = passwordcheck.o
|
||
|
|
||
|
# uncomment the following two lines to enable cracklib support
|
||
|
# PG_CPPFLAGS = -DUSE_CRACKLIB '-DCRACKLIB_DICTPATH="/usr/lib/cracklib_dict"'
|
||
|
# SHLIB_LINK = -lcrack
|
||
|
|
||
|
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
|