Consistently use "superuser" instead of "super user"
[pgsql.git] / src / bin / Makefile
blob2fe0ae6652ae88524ec0e44645f6af52361e5f4a
1 #-------------------------------------------------------------------------
3 # Makefile for src/bin (client programs)
5 # Portions Copyright (c) 1996-2021, 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_config \
23 pg_controldata \
24 pg_ctl \
25 pg_dump \
26 pg_resetwal \
27 pg_rewind \
28 pg_test_fsync \
29 pg_test_timing \
30 pg_upgrade \
31 pg_verifybackup \
32 pg_waldump \
33 pgbench \
34 psql \
35 scripts
37 ifeq ($(PORTNAME), win32)
38 SUBDIRS += pgevent
39 else
40 ALWAYS_SUBDIRS += pgevent
41 endif
43 $(recurse)
44 $(recurse_always)