mirror of
https://github.com/postgres/postgres.git
synced 2026-02-17 09:42:54 -05:00
This makes it a lot easier to run the corruption checks that are implemented by contrib/amcheck against lots of relations and get the result in an easily understandable format. It has a wide variety of options for choosing which relations to check and which checks to perform, and it can run checks in parallel if you want. Mark Dilger, reviewed by Peter Geoghegan and by me. Discussion: http://postgr.es/m/12ED3DA8-25F0-4B68-937D-D907CFBF08E7@enterprisedb.com Discussion: http://postgr.es/m/BA592F2D-F928-46FF-9516-2B827F067F57@enterprisedb.com
44 lines
838 B
Makefile
44 lines
838 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/bin (client programs)
|
|
#
|
|
# Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# src/bin/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/bin
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = \
|
|
initdb \
|
|
pg_amcheck \
|
|
pg_archivecleanup \
|
|
pg_basebackup \
|
|
pg_checksums \
|
|
pg_config \
|
|
pg_controldata \
|
|
pg_ctl \
|
|
pg_dump \
|
|
pg_resetwal \
|
|
pg_rewind \
|
|
pg_test_fsync \
|
|
pg_test_timing \
|
|
pg_upgrade \
|
|
pg_verifybackup \
|
|
pg_waldump \
|
|
pgbench \
|
|
psql \
|
|
scripts
|
|
|
|
ifeq ($(PORTNAME), win32)
|
|
SUBDIRS += pgevent
|
|
else
|
|
ALWAYS_SUBDIRS += pgevent
|
|
endif
|
|
|
|
$(recurse)
|
|
$(recurse_always)
|