mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
20 lines
428 B
Makefile
20 lines
428 B
Makefile
# contrib/sslinfo/Makefile
|
|
|
|
MODULE_big = sslinfo
|
|
OBJS = sslinfo.o
|
|
DATA_built = sslinfo.sql
|
|
DATA = uninstall_sslinfo.sql
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
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
|
|
|
|
SHLIB_LINK += $(filter -lssl -lcrypto -lssleay32 -leay32, $(LIBS))
|