mirror of https://github.com/postgres/postgres
19 lines
463 B
Makefile
19 lines
463 B
Makefile
# $PostgreSQL: pgsql/contrib/adminpack/Makefile,v 1.6 2007/11/10 23:59:50 momjian Exp $
|
|
|
|
MODULE_big = adminpack
|
|
PG_CPPFLAGS = -I$(libpq_srcdir)
|
|
DATA_built = adminpack.sql
|
|
DATA = uninstall_adminpack.sql
|
|
OBJS = adminpack.o
|
|
|
|
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
|