summaryrefslogtreecommitdiff
path: root/src/bin/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/Makefile')
-rw-r--r--src/bin/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/Makefile b/src/bin/Makefile
index 3809412a2d..c333a489f1 100644
--- a/src/bin/Makefile
+++ b/src/bin/Makefile
@@ -15,8 +15,12 @@ include $(top_builddir)/src/Makefile.global
SUBDIRS = initdb pg_ctl pg_dump \
psql scripts pg_config pg_controldata pg_resetxlog pg_basebackup
+
ifeq ($(PORTNAME), win32)
-SUBDIRS+=pgevent
+SUBDIRS += pgevent
+else
+ALWAYS_SUBDIRS += pgevent
endif
$(recurse)
+$(recurse_always)