mirror of
https://github.com/postgres/postgres.git
synced 2026-03-23 02:43:22 -04:00
This rename is in preparation for the introduction of recovery modules, where basic_wal_module will be used as a base template for the set of callbacks introduced. The former name did not really reflect all that. Author: Nathan Bossart Discussion: https://postgr.es/m/20221227192449.GA3672473@nathanxps13
21 lines
671 B
Makefile
21 lines
671 B
Makefile
# contrib/basic_wal_module/Makefile
|
|
|
|
MODULES = basic_wal_module
|
|
PGFILEDESC = "basic_wal_module - basic write-ahead log module"
|
|
|
|
REGRESS = basic_wal_module
|
|
REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/basic_wal_module/basic_wal_module.conf
|
|
# Disabled because these tests require "shared_preload_libraries=basic_wal_module",
|
|
# 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_wal_module
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|