2
0
mirror of https://git.postgresql.org/git/postgresql.git synced 2024-12-09 08:10:09 +08:00
postgresql/contrib/sslinfo/Makefile

17 lines
368 B
Makefile
Raw Normal View History

2006-09-06 07:15:02 +08:00
MODULE_big = sslinfo
OBJS = sslinfo.o
DATA_built = sslinfo.sql
DOCS = README.sslinfo
ifdef USE_PGXS
PGXS := $(shell pg_config --pgxs)
include $(PGXS)
else
subdir = contrib/sslinfo
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif
2006-09-06 07:15:02 +08:00
SHLIB_LINK += $(filter -lssl -lcrypto -lssleay32 -leay32, $(LIBS))