Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 395d125

Browse files
committed
Add PGFILEDESC description to Makefiles for all /contrib executables.
Add PGAPPICON to all executable makefiles.
1 parent 561afa5 commit 395d125

File tree

16 files changed

+57
-23
lines changed

16 files changed

+57
-23
lines changed

contrib/oid2name/Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# $PostgreSQL: pgsql/contrib/oid2name/Makefile,v 1.10 2007/11/10 23:59:51 momjian Exp $
1+
# $PostgreSQL: pgsql/contrib/oid2name/Makefile,v 1.11 2010/05/12 11:33:07 momjian Exp $
2+
3+
PGFILEDESC = "oid2name - examine the file structure"
4+
PGAPPICON=win32
25

36
PROGRAM = oid2name
47
OBJS = oid2name.o

contrib/pg_standby/Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.5 2009/07/16 09:59:46 heikki Exp $
1+
# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.6 2010/05/12 11:33:07 momjian Exp $
2+
3+
PGFILEDESC = "pg_standby - supports creation of a warm standby"
4+
PGAPPICON=win32
25

36
PROGRAM = pg_standby
47
OBJS = pg_standby.o

contrib/pg_upgrade/Makefile

+10-9
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@
66
# This Makefile generates an executable and a shared object file
77
#
88

9-
PROGRAM = pg_upgrade
10-
OBJS = check.o controldata.o dump.o exec.o file.o function.o info.o \
11-
option.o page.o pg_upgrade.o relfilenode.o server.o \
12-
tablespace.o util.o version.o version_old_8_3.o $(WIN32RES)
9+
PGFILEDESC = "pg_upgrade - an in-place binary upgrade utility"
10+
PGAPPICON = win32
1311

14-
PG_CPPFLAGS = -DFRONTEND -DDLSUFFIX=\"$(DLSUFFIX)\" -I$(srcdir) -I$(libpq_srcdir)
15-
PG_LIBS = $(libpq_pgport)
12+
PROGRAM = pg_upgrade
13+
OBJS = check.o controldata.o dump.o exec.o file.o function.o info.o \
14+
option.o page.o pg_upgrade.o relfilenode.o server.o \
15+
tablespace.o util.o version.o version_old_8_3.o $(WIN32RES)
16+
17+
MODULES = pg_upgrade_sysoids
1618

17-
PGFILEDESC = "pg_upgrade - In-Place Binary Upgrade Utility"
18-
PGAPPICON = win32
19-
MODULES = pg_upgrade_sysoids
19+
PG_CPPFLAGS = -DFRONTEND -DDLSUFFIX=\"$(DLSUFFIX)\" -I$(srcdir) -I$(libpq_srcdir)
20+
PG_LIBS = $(libpq_pgport)
2021

2122
ifdef USE_PGXS
2223
PG_CONFIG = pg_config

contrib/pgbench/Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.17 2009/08/03 18:30:55 tgl Exp $
1+
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.18 2010/05/12 11:33:08 momjian Exp $
2+
3+
PGFILEDESC = "pgbench - a simple program for running benchmark tests"
4+
PGAPPICON=win32
25

36
PROGRAM = pgbench
47
OBJS = pgbench.o

contrib/vacuumlo/Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# $PostgreSQL: pgsql/contrib/vacuumlo/Makefile,v 1.17 2007/11/10 23:59:52 momjian Exp $
1+
# $PostgreSQL: pgsql/contrib/vacuumlo/Makefile,v 1.18 2010/05/12 11:33:08 momjian Exp $
2+
3+
PGFILEDESC = "vacuumlo - removes orphaned large objects"
4+
PGAPPICON=win32
25

36
PROGRAM = vacuumlo
47
OBJS = vacuumlo.o

src/backend/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.141 2010/01/20 23:12:03 tgl Exp $
8+
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.142 2010/05/12 11:33:09 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

1212
PGFILEDESC = "PostgreSQL Server"
13+
PGAPPICON=win32
14+
1315
subdir = src/backend
1416
top_builddir = ../..
1517
include $(top_builddir)/src/Makefile.global

src/bin/initdb/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.59 2010/01/02 16:57:58 momjian Exp $
8+
# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.60 2010/05/12 11:33:09 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

1212
PGFILEDESC = "initdb - initialize a new database cluster"
13+
PGAPPICON=win32
14+
1315
subdir = src/bin/initdb
1416
top_builddir = ../../..
1517
include $(top_builddir)/src/Makefile.global

src/bin/pg_config/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
#
55
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.23 2010/01/02 16:57:58 momjian Exp $
7+
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.24 2010/05/12 11:33:09 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
PGFILEDESC = "pg_config - report configuration information"
12+
PGAPPICON=win32
13+
1214
subdir = src/bin/pg_config
1315
top_builddir = ../../..
1416
include $(top_builddir)/src/Makefile.global

src/bin/pg_controldata/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
#
55
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.20 2010/01/02 16:57:58 momjian Exp $
7+
# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.21 2010/05/12 11:33:09 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
PGFILEDESC = "pg_controldata - reads the data from pg_control"
12+
PGAPPICON=win32
13+
1214
subdir = src/bin/pg_controldata
1315
top_builddir = ../../..
1416
include $(top_builddir)/src/Makefile.global

src/bin/pg_ctl/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.28 2010/01/02 16:57:58 momjian Exp $
8+
# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.29 2010/05/12 11:33:09 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

1212
PGFILEDESC = "pg_ctl - starts/stops/restarts the PostgreSQL server"
13+
PGAPPICON=win32
14+
1315
subdir = src/bin/pg_ctl
1416
top_builddir = ../../..
1517
include $(top_builddir)/src/Makefile.global

src/bin/pg_dump/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.69 2010/01/02 16:57:58 momjian Exp $
8+
# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.70 2010/05/12 11:33:09 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

1212
PGFILEDESC = "pg_dump/pg_restore/pg_dumpall - backup and restore PostgreSQL databases"
13+
PGAPPICON=win32
14+
1315
subdir = src/bin/pg_dump
1416
top_builddir = ../../..
1517
include $(top_builddir)/src/Makefile.global

src/bin/pg_resetxlog/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
#
55
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/bin/pg_resetxlog/Makefile,v 1.22 2010/01/02 16:57:59 momjian Exp $
7+
# $PostgreSQL: pgsql/src/bin/pg_resetxlog/Makefile,v 1.23 2010/05/12 11:33:10 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
PGFILEDESC = "pg_resetxlog - reset PostgreSQL WAL log"
12+
PGAPPICON=win32
13+
1214
subdir = src/bin/pg_resetxlog
1315
top_builddir = ../../..
1416
include $(top_builddir)/src/Makefile.global

src/bin/pgevent/Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
#-------------------------------------------------------------------------
88

99
PGFILEDESC = "Eventlog message formatter"
10+
PGAPPICON=win32
11+
1012
PGFILESHLIB = 1
1113
subdir = src/bin/pgevent
1214
top_builddir = ../../..

src/bin/psql/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.68 2010/01/02 16:57:59 momjian Exp $
8+
# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.69 2010/05/12 11:33:10 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

1212
PGFILEDESC = "psql - the PostgreSQL interactive terminal"
1313
PGAPPICON=win32
14+
1415
subdir = src/bin/psql
1516
top_builddir = ../../..
1617
include $(top_builddir)/src/Makefile.global

src/bin/scripts/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.44 2010/01/02 16:58:00 momjian Exp $
8+
# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.45 2010/05/12 11:33:10 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

1212
PGFILEDESC = "PostgreSQL utility"
13+
PGAPPICON=win32
14+
1315
subdir = src/bin/scripts
1416
top_builddir = ../../..
1517
include $(top_builddir)/src/Makefile.global

src/interfaces/ecpg/preproc/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
#
55
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.148 2010/01/02 16:58:11 momjian Exp $
7+
# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.149 2010/05/12 11:33:10 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
PGFILEDESC = "ecpg - embedded SQL precompiler for C"
12+
PGAPPICON=win32
13+
1214
subdir = src/interfaces/ecpg/preproc
1315
top_builddir = ../../../..
1416
include $(top_builddir)/src/Makefile.global

0 commit comments

Comments
 (0)