1996-07-09 02:22:35 -04:00
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
#
|
2000-06-26 20:32:06 -04:00
|
|
|
# Makefile for src/bin (client programs)
|
1996-07-09 02:22:35 -04:00
|
|
|
#
|
2016-01-02 13:33:40 -05:00
|
|
|
# Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
|
2001-02-18 13:34:02 -05:00
|
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
1996-07-09 02:22:35 -04:00
|
|
|
#
|
2010-09-20 16:08:53 -04:00
|
|
|
# src/bin/Makefile
|
1996-07-09 02:22:35 -04:00
|
|
|
#
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
2000-06-26 20:32:06 -04:00
|
|
|
subdir = src/bin
|
|
|
|
|
top_builddir = ../..
|
2000-08-31 12:12:35 -04:00
|
|
|
include $(top_builddir)/src/Makefile.global
|
1996-07-22 23:03:43 -04:00
|
|
|
|
2014-12-14 20:41:58 -05:00
|
|
|
SUBDIRS = \
|
|
|
|
|
initdb \
|
2015-03-10 22:33:23 -04:00
|
|
|
pg_archivecleanup \
|
2014-12-14 20:41:58 -05:00
|
|
|
pg_basebackup \
|
|
|
|
|
pg_config \
|
|
|
|
|
pg_controldata \
|
|
|
|
|
pg_ctl \
|
|
|
|
|
pg_dump \
|
|
|
|
|
pg_resetxlog \
|
2015-03-23 13:47:52 -04:00
|
|
|
pg_rewind \
|
2015-03-10 22:33:24 -04:00
|
|
|
pg_test_fsync \
|
2015-03-10 22:33:24 -04:00
|
|
|
pg_test_timing \
|
2015-03-10 22:33:25 -04:00
|
|
|
pg_upgrade \
|
2015-03-10 22:33:24 -04:00
|
|
|
pg_xlogdump \
|
2015-03-10 22:33:24 -04:00
|
|
|
pgbench \
|
2014-12-14 20:41:58 -05:00
|
|
|
psql \
|
|
|
|
|
scripts
|
2011-07-03 13:55:02 -04:00
|
|
|
|
2004-06-19 21:32:49 -04:00
|
|
|
ifeq ($(PORTNAME), win32)
|
2011-07-03 13:55:02 -04:00
|
|
|
SUBDIRS += pgevent
|
|
|
|
|
else
|
|
|
|
|
ALWAYS_SUBDIRS += pgevent
|
2004-06-19 21:32:49 -04:00
|
|
|
endif
|
1998-07-23 23:32:46 -04:00
|
|
|
|
2010-11-12 15:15:16 -05:00
|
|
|
$(recurse)
|
2011-07-03 13:55:02 -04:00
|
|
|
$(recurse_always)
|