diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/Makefile | 4 | ||||
-rw-r--r-- | src/bin/initdb/Makefile | 4 | ||||
-rw-r--r-- | src/bin/pg_config/Makefile | 4 | ||||
-rw-r--r-- | src/bin/pg_controldata/Makefile | 4 | ||||
-rw-r--r-- | src/bin/pg_ctl/Makefile | 4 | ||||
-rw-r--r-- | src/bin/pg_dump/Makefile | 4 | ||||
-rw-r--r-- | src/bin/pg_resetxlog/Makefile | 4 | ||||
-rw-r--r-- | src/bin/pgevent/Makefile | 2 | ||||
-rw-r--r-- | src/bin/psql/Makefile | 3 | ||||
-rw-r--r-- | src/bin/scripts/Makefile | 4 | ||||
-rw-r--r-- | src/interfaces/ecpg/preproc/Makefile | 4 |
11 files changed, 31 insertions, 10 deletions
diff --git a/src/backend/Makefile b/src/backend/Makefile index 5916aaa5112..6af63db92cf 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -5,11 +5,13 @@ # Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/backend/Makefile,v 1.141 2010/01/20 23:12:03 tgl Exp $ +# $PostgreSQL: pgsql/src/backend/Makefile,v 1.142 2010/05/12 11:33:09 momjian Exp $ # #------------------------------------------------------------------------- PGFILEDESC = "PostgreSQL Server" +PGAPPICON=win32 + subdir = src/backend top_builddir = ../.. include $(top_builddir)/src/Makefile.global diff --git a/src/bin/initdb/Makefile b/src/bin/initdb/Makefile index 7198f9438a6..4f8771569f0 100644 --- a/src/bin/initdb/Makefile +++ b/src/bin/initdb/Makefile @@ -5,11 +5,13 @@ # Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group # 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" +PGAPPICON=win32 + subdir = src/bin/initdb top_builddir = ../../.. include $(top_builddir)/src/Makefile.global diff --git a/src/bin/pg_config/Makefile b/src/bin/pg_config/Makefile index a9b9f49d64a..43558749654 100644 --- a/src/bin/pg_config/Makefile +++ b/src/bin/pg_config/Makefile @@ -4,11 +4,13 @@ # # Copyright (c) 1998-2010, PostgreSQL Global Development Group # -# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.23 2010/01/02 16:57:58 momjian Exp $ +# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.24 2010/05/12 11:33:09 momjian Exp $ # #------------------------------------------------------------------------- PGFILEDESC = "pg_config - report configuration information" +PGAPPICON=win32 + subdir = src/bin/pg_config top_builddir = ../../.. include $(top_builddir)/src/Makefile.global diff --git a/src/bin/pg_controldata/Makefile b/src/bin/pg_controldata/Makefile index f3de00a34e6..c12bf335570 100644 --- a/src/bin/pg_controldata/Makefile +++ b/src/bin/pg_controldata/Makefile @@ -4,11 +4,13 @@ # # Copyright (c) 1998-2010, PostgreSQL Global Development Group # -# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.20 2010/01/02 16:57:58 momjian Exp $ +# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.21 2010/05/12 11:33:09 momjian Exp $ # #------------------------------------------------------------------------- PGFILEDESC = "pg_controldata - reads the data from pg_control" +PGAPPICON=win32 + subdir = src/bin/pg_controldata top_builddir = ../../.. include $(top_builddir)/src/Makefile.global diff --git a/src/bin/pg_ctl/Makefile b/src/bin/pg_ctl/Makefile index 4a85b797303..32a4fc92cb7 100644 --- a/src/bin/pg_ctl/Makefile +++ b/src/bin/pg_ctl/Makefile @@ -5,11 +5,13 @@ # Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.28 2010/01/02 16:57:58 momjian Exp $ +# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.29 2010/05/12 11:33:09 momjian Exp $ # #------------------------------------------------------------------------- PGFILEDESC = "pg_ctl - starts/stops/restarts the PostgreSQL server" +PGAPPICON=win32 + subdir = src/bin/pg_ctl top_builddir = ../../.. include $(top_builddir)/src/Makefile.global diff --git a/src/bin/pg_dump/Makefile b/src/bin/pg_dump/Makefile index d0920c52ca1..2eeb099b73d 100644 --- a/src/bin/pg_dump/Makefile +++ b/src/bin/pg_dump/Makefile @@ -5,11 +5,13 @@ # Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group # 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" +PGAPPICON=win32 + subdir = src/bin/pg_dump top_builddir = ../../.. include $(top_builddir)/src/Makefile.global diff --git a/src/bin/pg_resetxlog/Makefile b/src/bin/pg_resetxlog/Makefile index 3d836678c0d..57efc8d6e64 100644 --- a/src/bin/pg_resetxlog/Makefile +++ b/src/bin/pg_resetxlog/Makefile @@ -4,11 +4,13 @@ # # Copyright (c) 1998-2010, PostgreSQL Global Development Group # -# $PostgreSQL: pgsql/src/bin/pg_resetxlog/Makefile,v 1.22 2010/01/02 16:57:59 momjian Exp $ +# $PostgreSQL: pgsql/src/bin/pg_resetxlog/Makefile,v 1.23 2010/05/12 11:33:10 momjian Exp $ # #------------------------------------------------------------------------- PGFILEDESC = "pg_resetxlog - reset PostgreSQL WAL log" +PGAPPICON=win32 + subdir = src/bin/pg_resetxlog top_builddir = ../../.. include $(top_builddir)/src/Makefile.global diff --git a/src/bin/pgevent/Makefile b/src/bin/pgevent/Makefile index e0f27e5d5a5..013b801c64f 100644 --- a/src/bin/pgevent/Makefile +++ b/src/bin/pgevent/Makefile @@ -7,6 +7,8 @@ #------------------------------------------------------------------------- PGFILEDESC = "Eventlog message formatter" +PGAPPICON=win32 + PGFILESHLIB = 1 subdir = src/bin/pgevent top_builddir = ../../.. diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile index 7020befb705..80e2daba131 100644 --- a/src/bin/psql/Makefile +++ b/src/bin/psql/Makefile @@ -5,12 +5,13 @@ # Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.68 2010/01/02 16:57:59 momjian Exp $ +# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.69 2010/05/12 11:33:10 momjian Exp $ # #------------------------------------------------------------------------- PGFILEDESC = "psql - the PostgreSQL interactive terminal" PGAPPICON=win32 + subdir = src/bin/psql top_builddir = ../../.. include $(top_builddir)/src/Makefile.global diff --git a/src/bin/scripts/Makefile b/src/bin/scripts/Makefile index 5a7616457a4..5cd61ad7c3d 100644 --- a/src/bin/scripts/Makefile +++ b/src/bin/scripts/Makefile @@ -5,11 +5,13 @@ # Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.44 2010/01/02 16:58:00 momjian Exp $ +# $PostgreSQL: pgsql/src/bin/scripts/Makefile,v 1.45 2010/05/12 11:33:10 momjian Exp $ # #------------------------------------------------------------------------- PGFILEDESC = "PostgreSQL utility" +PGAPPICON=win32 + subdir = src/bin/scripts top_builddir = ../../.. include $(top_builddir)/src/Makefile.global diff --git a/src/interfaces/ecpg/preproc/Makefile b/src/interfaces/ecpg/preproc/Makefile index 39f9068ef4d..3c0a4c732f0 100644 --- a/src/interfaces/ecpg/preproc/Makefile +++ b/src/interfaces/ecpg/preproc/Makefile @@ -4,11 +4,13 @@ # # Copyright (c) 1998-2010, PostgreSQL Global Development Group # -# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.148 2010/01/02 16:58:11 momjian Exp $ +# $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/Makefile,v 1.149 2010/05/12 11:33:10 momjian Exp $ # #------------------------------------------------------------------------- PGFILEDESC = "ecpg - embedded SQL precompiler for C" +PGAPPICON=win32 + subdir = src/interfaces/ecpg/preproc top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global |