Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
395d1259
Commit
395d1259
authored
May 12, 2010
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add PGFILEDESC description to Makefiles for all /contrib executables.
Add PGAPPICON to all executable makefiles.
parent
561afa53
Changes
16
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
57 additions
and
23 deletions
+57
-23
contrib/oid2name/Makefile
contrib/oid2name/Makefile
+4
-1
contrib/pg_standby/Makefile
contrib/pg_standby/Makefile
+4
-1
contrib/pg_upgrade/Makefile
contrib/pg_upgrade/Makefile
+10
-9
contrib/pgbench/Makefile
contrib/pgbench/Makefile
+4
-1
contrib/vacuumlo/Makefile
contrib/vacuumlo/Makefile
+4
-1
src/backend/Makefile
src/backend/Makefile
+3
-1
src/bin/initdb/Makefile
src/bin/initdb/Makefile
+3
-1
src/bin/pg_config/Makefile
src/bin/pg_config/Makefile
+3
-1
src/bin/pg_controldata/Makefile
src/bin/pg_controldata/Makefile
+3
-1
src/bin/pg_ctl/Makefile
src/bin/pg_ctl/Makefile
+3
-1
src/bin/pg_dump/Makefile
src/bin/pg_dump/Makefile
+3
-1
src/bin/pg_resetxlog/Makefile
src/bin/pg_resetxlog/Makefile
+3
-1
src/bin/pgevent/Makefile
src/bin/pgevent/Makefile
+2
-0
src/bin/psql/Makefile
src/bin/psql/Makefile
+2
-1
src/bin/scripts/Makefile
src/bin/scripts/Makefile
+3
-1
src/interfaces/ecpg/preproc/Makefile
src/interfaces/ecpg/preproc/Makefile
+3
-1
No files found.
contrib/oid2name/Makefile
View file @
395d1259
# $PostgreSQL: pgsql/contrib/oid2name/Makefile,v 1.10 2007/11/10 23:59:51 momjian Exp $
# $PostgreSQL: pgsql/contrib/oid2name/Makefile,v 1.11 2010/05/12 11:33:07 momjian Exp $
PGFILEDESC
=
"oid2name - examine the file structure"
PGAPPICON
=
win32
PROGRAM
=
oid2name
PROGRAM
=
oid2name
OBJS
=
oid2name.o
OBJS
=
oid2name.o
...
...
contrib/pg_standby/Makefile
View file @
395d1259
# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.5 2009/07/16 09:59:46 heikki Exp $
# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.6 2010/05/12 11:33:07 momjian Exp $
PGFILEDESC
=
"pg_standby - supports creation of a warm standby"
PGAPPICON
=
win32
PROGRAM
=
pg_standby
PROGRAM
=
pg_standby
OBJS
=
pg_standby.o
OBJS
=
pg_standby.o
...
...
contrib/pg_upgrade/Makefile
View file @
395d1259
...
@@ -6,18 +6,19 @@
...
@@ -6,18 +6,19 @@
# This Makefile generates an executable and a shared object file
# This Makefile generates an executable and a shared object file
#
#
PGFILEDESC
=
"pg_upgrade - an in-place binary upgrade utility"
PGAPPICON
=
win32
PROGRAM
=
pg_upgrade
PROGRAM
=
pg_upgrade
OBJS
=
check.o controldata.o dump.o exec.o file.o
function
.o info.o
\
OBJS
=
check.o controldata.o dump.o exec.o file.o
function
.o info.o
\
option.o page.o pg_upgrade.o relfilenode.o server.o
\
option.o page.o pg_upgrade.o relfilenode.o server.o
\
tablespace.o util.o version.o version_old_8_3.o
$(WIN32RES)
tablespace.o util.o version.o version_old_8_3.o
$(WIN32RES)
MODULES
=
pg_upgrade_sysoids
PG_CPPFLAGS
=
-DFRONTEND
-DDLSUFFIX
=
\"
$(DLSUFFIX)
\"
-I
$(srcdir)
-I
$(libpq_srcdir)
PG_CPPFLAGS
=
-DFRONTEND
-DDLSUFFIX
=
\"
$(DLSUFFIX)
\"
-I
$(srcdir)
-I
$(libpq_srcdir)
PG_LIBS
=
$(libpq_pgport)
PG_LIBS
=
$(libpq_pgport)
PGFILEDESC
=
"pg_upgrade - In-Place Binary Upgrade Utility"
PGAPPICON
=
win32
MODULES
=
pg_upgrade_sysoids
ifdef
USE_PGXS
ifdef
USE_PGXS
PG_CONFIG
=
pg_config
PG_CONFIG
=
pg_config
PGXS
:=
$(
shell
$(PG_CONFIG)
--pgxs
)
PGXS
:=
$(
shell
$(PG_CONFIG)
--pgxs
)
...
...
contrib/pgbench/Makefile
View file @
395d1259
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.17 2009/08/03 18:30:55 tgl Exp $
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.18 2010/05/12 11:33:08 momjian Exp $
PGFILEDESC
=
"pgbench - a simple program for running benchmark tests"
PGAPPICON
=
win32
PROGRAM
=
pgbench
PROGRAM
=
pgbench
OBJS
=
pgbench.o
OBJS
=
pgbench.o
...
...
contrib/vacuumlo/Makefile
View file @
395d1259
# $PostgreSQL: pgsql/contrib/vacuumlo/Makefile,v 1.17 2007/11/10 23:59:52 momjian Exp $
# $PostgreSQL: pgsql/contrib/vacuumlo/Makefile,v 1.18 2010/05/12 11:33:08 momjian Exp $
PGFILEDESC
=
"vacuumlo - removes orphaned large objects"
PGAPPICON
=
win32
PROGRAM
=
vacuumlo
PROGRAM
=
vacuumlo
OBJS
=
vacuumlo.o
OBJS
=
vacuumlo.o
...
...
src/backend/Makefile
View file @
395d1259
...
@@ -5,11 +5,13 @@
...
@@ -5,11 +5,13 @@
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.14
1 2010/01/20 23:12:03 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.14
2 2010/05/12 11:33:09 momjian
Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"PostgreSQL Server"
PGFILEDESC
=
"PostgreSQL Server"
PGAPPICON
=
win32
subdir
=
src/backend
subdir
=
src/backend
top_builddir
=
../..
top_builddir
=
../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
src/bin/initdb/Makefile
View file @
395d1259
...
@@ -5,11 +5,13 @@
...
@@ -5,11 +5,13 @@
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.
59 2010/01/02 16:57:58
momjian Exp $
# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.
60 2010/05/12 11:33:09
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"initdb - initialize a new database cluster"
PGFILEDESC
=
"initdb - initialize a new database cluster"
PGAPPICON
=
win32
subdir
=
src/bin/initdb
subdir
=
src/bin/initdb
top_builddir
=
../../..
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
src/bin/pg_config/Makefile
View file @
395d1259
...
@@ -4,11 +4,13 @@
...
@@ -4,11 +4,13 @@
#
#
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
#
#
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.2
3 2010/01/02 16:57:58
momjian Exp $
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.2
4 2010/05/12 11:33:09
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"pg_config - report configuration information"
PGFILEDESC
=
"pg_config - report configuration information"
PGAPPICON
=
win32
subdir
=
src/bin/pg_config
subdir
=
src/bin/pg_config
top_builddir
=
../../..
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
src/bin/pg_controldata/Makefile
View file @
395d1259
...
@@ -4,11 +4,13 @@
...
@@ -4,11 +4,13 @@
#
#
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
#
#
# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.2
0 2010/01/02 16:57:58
momjian Exp $
# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.2
1 2010/05/12 11:33:09
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"pg_controldata - reads the data from pg_control"
PGFILEDESC
=
"pg_controldata - reads the data from pg_control"
PGAPPICON
=
win32
subdir
=
src/bin/pg_controldata
subdir
=
src/bin/pg_controldata
top_builddir
=
../../..
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
src/bin/pg_ctl/Makefile
View file @
395d1259
...
@@ -5,11 +5,13 @@
...
@@ -5,11 +5,13 @@
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.2
8 2010/01/02 16:57:58
momjian Exp $
# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.2
9 2010/05/12 11:33:09
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"pg_ctl - starts/stops/restarts the PostgreSQL server"
PGFILEDESC
=
"pg_ctl - starts/stops/restarts the PostgreSQL server"
PGAPPICON
=
win32
subdir
=
src/bin/pg_ctl
subdir
=
src/bin/pg_ctl
top_builddir
=
../../..
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
src/bin/pg_dump/Makefile
View file @
395d1259
...
@@ -5,11 +5,13 @@
...
@@ -5,11 +5,13 @@
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.
69 2010/01/02 16:57:58
momjian Exp $
# $PostgreSQL: pgsql/src/bin/pg_dump/Makefile,v 1.
70 2010/05/12 11:33:09
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"pg_dump/pg_restore/pg_dumpall - backup and restore PostgreSQL databases"
PGFILEDESC
=
"pg_dump/pg_restore/pg_dumpall - backup and restore PostgreSQL databases"
PGAPPICON
=
win32
subdir
=
src/bin/pg_dump
subdir
=
src/bin/pg_dump
top_builddir
=
../../..
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
src/bin/pg_resetxlog/Makefile
View file @
395d1259
...
@@ -4,11 +4,13 @@
...
@@ -4,11 +4,13 @@
#
#
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
#
#
# $PostgreSQL: pgsql/src/bin/pg_resetxlog/Makefile,v 1.2
2 2010/01/02 16:57:59
momjian Exp $
# $PostgreSQL: pgsql/src/bin/pg_resetxlog/Makefile,v 1.2
3 2010/05/12 11:33:10
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"pg_resetxlog - reset PostgreSQL WAL log"
PGFILEDESC
=
"pg_resetxlog - reset PostgreSQL WAL log"
PGAPPICON
=
win32
subdir
=
src/bin/pg_resetxlog
subdir
=
src/bin/pg_resetxlog
top_builddir
=
../../..
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
src/bin/pgevent/Makefile
View file @
395d1259
...
@@ -7,6 +7,8 @@
...
@@ -7,6 +7,8 @@
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"Eventlog message formatter"
PGFILEDESC
=
"Eventlog message formatter"
PGAPPICON
=
win32
PGFILESHLIB
=
1
PGFILESHLIB
=
1
subdir
=
src/bin/pgevent
subdir
=
src/bin/pgevent
top_builddir
=
../../..
top_builddir
=
../../..
...
...
src/bin/psql/Makefile
View file @
395d1259
...
@@ -5,12 +5,13 @@
...
@@ -5,12 +5,13 @@
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.6
8 2010/01/02 16:57:59
momjian Exp $
# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.6
9 2010/05/12 11:33:10
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"psql - the PostgreSQL interactive terminal"
PGFILEDESC
=
"psql - the PostgreSQL interactive terminal"
PGAPPICON
=
win32
PGAPPICON
=
win32
subdir
=
src/bin/psql
subdir
=
src/bin/psql
top_builddir
=
../../..
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
src/bin/scripts/Makefile
View file @
395d1259
...
@@ -5,11 +5,13 @@
...
@@ -5,11 +5,13 @@
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
# Portions Copyright (c) 1994, Regents of the University of California
#
#
# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.4
4 2010/01/02 16:58:0
0 momjian Exp $
# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.4
5 2010/05/12 11:33:1
0 momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"PostgreSQL utility"
PGFILEDESC
=
"PostgreSQL utility"
PGAPPICON
=
win32
subdir
=
src/bin/scripts
subdir
=
src/bin/scripts
top_builddir
=
../../..
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
src/interfaces/ecpg/preproc/Makefile
View file @
395d1259
...
@@ -4,11 +4,13 @@
...
@@ -4,11 +4,13 @@
#
#
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
#
#
# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.14
8 2010/01/02 16:58:11
momjian Exp $
# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.14
9 2010/05/12 11:33:10
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
PGFILEDESC
=
"ecpg - embedded SQL precompiler for C"
PGFILEDESC
=
"ecpg - embedded SQL precompiler for C"
PGAPPICON
=
win32
subdir
=
src/interfaces/ecpg/preproc
subdir
=
src/interfaces/ecpg/preproc
top_builddir
=
../../../..
top_builddir
=
../../../..
include
$(top_builddir)/src/Makefile.global
include
$(top_builddir)/src/Makefile.global
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment