Improve nbtree unsatisfiable RowCompare detection.
[pgsql.git] / src / bin / Makefile
blobac50cf93cb67eb6f738c27a78be9bbf2c25c2da8
1 #-------------------------------------------------------------------------
3 # Makefile for src/bin (client programs)
5 # Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
6 # Portions Copyright (c) 1994, Regents of the University of California
8 # src/bin/Makefile
10 #-------------------------------------------------------------------------
12 subdir = src/bin
13 top_builddir = ../..
14 include $(top_builddir)/src/Makefile.global
16 SUBDIRS = \
17 initdb \
18 pg_amcheck \
19 pg_archivecleanup \
20 pg_basebackup \
21 pg_checksums \
22 pg_combinebackup \
23 pg_config \
24 pg_controldata \
25 pg_ctl \
26 pg_dump \
27 pg_resetwal \
28 pg_rewind \
29 pg_test_fsync \
30 pg_test_timing \
31 pg_upgrade \
32 pg_verifybackup \
33 pg_waldump \
34 pg_walsummary \
35 pgbench \
36 psql \
37 scripts
39 ifeq ($(PORTNAME), win32)
40 SUBDIRS += pgevent
41 else
42 ALWAYS_SUBDIRS += pgevent
43 endif
45 $(recurse)
46 $(recurse_always)