summaryrefslogtreecommitdiff
path: root/src/bin/Makefile
diff options
context:
space:
mode:
authorBruce Momjian2004-06-20 01:32:49 +0000
committerBruce Momjian2004-06-20 01:32:49 +0000
commit7864e0aa6a49bb1971eac44531327080c5242dbf (patch)
tree8f105b0cb9c9ad8e3b157fcd52c2a6ba9b862949 /src/bin/Makefile
parent109867748259d286dd01fce17d5f895ce59c68d5 (diff)
Add pgevent, with docs explaining out to install it on Win32.
Diffstat (limited to 'src/bin/Makefile')
-rw-r--r--src/bin/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bin/Makefile b/src/bin/Makefile
index 46e12216c4..994601a51e 100644
--- a/src/bin/Makefile
+++ b/src/bin/Makefile
@@ -5,7 +5,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/src/bin/Makefile,v 1.44 2004/06/18 21:24:05 tgl Exp $
+# $PostgreSQL: pgsql/src/bin/Makefile,v 1.45 2004/06/20 01:32:47 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -15,6 +15,9 @@ include $(top_builddir)/src/Makefile.global
DIRS := initdb ipcclean pg_ctl pg_dump \
psql scripts pg_config pg_controldata pg_resetxlog
+ifeq ($(PORTNAME), win32)
+DIRS+=pgevent
+endif
all install installdirs uninstall depend distprep:
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done