mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
19 lines
461 B
Makefile
19 lines
461 B
Makefile
# $PostgreSQL: pgsql/contrib/adminpack/Makefile,v 1.4 2007/02/09 17:03:59 petere Exp $
|
|
|
|
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
|