summaryrefslogtreecommitdiff
path: root/postgresql/makefile.mk
diff options
context:
space:
mode:
Diffstat (limited to 'postgresql/makefile.mk')
-rw-r--r--postgresql/makefile.mk9
1 files changed, 3 insertions, 6 deletions
diff --git a/postgresql/makefile.mk b/postgresql/makefile.mk
index 6e85025d49ce..2aae5db73e70 100644
--- a/postgresql/makefile.mk
+++ b/postgresql/makefile.mk
@@ -47,7 +47,7 @@ PATCH_FILES=\
.ENDIF
-.IF "$(GUI)$(COM)"=="WNTGCC"
+.IF "$(GUI)$(COM)"=="WNTMSC"
CONFIGURE_DIR=.
BUILD_DIR=src
@@ -62,11 +62,8 @@ BUILD_DIR=src/interfaces/libpq
# (which we don't install anyway for now...)
# --sysconfdir: config files. Ideally, we would like that to be "the same as the platform default",
# but that's quite some guessing work.
-.IF "$(VERBOSE)"==""
-MAKE_SILENT=-s
-.ENDIF
-CONFIGURE_ACTION = ./configure --without-readline
-BUILD_ACTION = make $(MAKE_SILENT) -j$(GMAKE_MODULE_PARALLELISM) all-static-lib
+CONFIGURE_ACTION = ./configure --without-readline --disable-shared
+BUILD_ACTION = make -j$(GMAKE_MODULE_PARALLELISM)
.ENDIF
# --- Targets ------------------------------------------------------