mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
107a2d4204
Those two modules included references to libpq's source path, without using anything from libpq. Some copy-pastos done when each module was created are likely at the origin of those useless references (aecf5ee
for old_snapshot,fe59e56
for adminpack). Reviewed-by: Tom Lane, David Rowley Discussion: https://postgr.es/m/X+LQpfLyk7jgzUki@paquier.xyz
25 lines
533 B
Makefile
25 lines
533 B
Makefile
# contrib/adminpack/Makefile
|
|
|
|
MODULE_big = adminpack
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
adminpack.o
|
|
|
|
EXTENSION = adminpack
|
|
DATA = adminpack--1.0.sql adminpack--1.0--1.1.sql adminpack--1.1--2.0.sql\
|
|
adminpack--2.0--2.1.sql
|
|
PGFILEDESC = "adminpack - support functions for pgAdmin"
|
|
|
|
REGRESS = adminpack
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/adminpack
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|