mirror of
https://github.com/postgres/postgres.git
synced 2026-06-02 05:49:16 -04:00
9aeff092c0
This reverts commit 0ad3c60, as per feedback from Tom Lane, Robert Haas
and Andres Freund. The new name used for the module had little
support.
This moves back to basic_archive as module name, and we will likely use
that as template for recovery modules, as well.
Discussion: https://postgr.es/m/CA+TgmoYG5uGOp7DGFT5gzC1kKFWGjkLSj_wOQxGhfMcvVEiKGA@mail.gmail.com
22 lines
639 B
Makefile
22 lines
639 B
Makefile
# contrib/basic_archive/Makefile
|
|
|
|
MODULES = basic_archive
|
|
PGFILEDESC = "basic_archive - basic archive module"
|
|
|
|
REGRESS = basic_archive
|
|
REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/basic_archive/basic_archive.conf
|
|
# Disabled because these tests require "shared_preload_libraries=basic_archive",
|
|
# which typical installcheck users do not have (e.g. buildfarm clients).
|
|
NO_INSTALLCHECK = 1
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/basic_archive
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|