mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
17 lines
373 B
Makefile
17 lines
373 B
Makefile
MODULE_big = adminpack
|
|
PG_CPPFLAGS = -I$(libpq_srcdir)
|
|
DATA_built = adminpack.sql
|
|
DATA = uninstall_adminpack.sql
|
|
DOCS = README.adminpack
|
|
OBJS = adminpack.o
|
|
|
|
ifdef USE_PGXS
|
|
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
|