aboutsummaryrefslogtreecommitdiff
path: root/ports/libpq/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ports/libpq/Makefile')
-rw-r--r--ports/libpq/Makefile17
1 files changed, 10 insertions, 7 deletions
diff --git a/ports/libpq/Makefile b/ports/libpq/Makefile
index 4832b503b..ee2ffcaf1 100644
--- a/ports/libpq/Makefile
+++ b/ports/libpq/Makefile
@@ -4,19 +4,22 @@ include src/Makefile.global
.NOTPARALLEL:
-ifeq ($(LIBPQ_LIBRARY_TYPE), shared)
-LIBPQ_LIB_SUFFIX = _shlib
-endif
-
ifeq ($(LIBPQ_LIBRARY_TYPE), static)
LIBPQ_INSTALL_LIBS = install-stlib
endif
+ifeq ($(LIBPQ_LIBRARY_TYPE), shared)
+ifeq ($(USING_MINGW), yes)
+# The import library name is the same as the static library name
+EXTRA_TARGET = install-lib-static
+endif
+endif
+
.PHONY: all
all:
$(MAKE) -C src/include MAKELEVEL=0
- $(MAKE) -C src/common MAKELEVEL=0 libpgcommon$(LIBPQ_LIB_SUFFIX).a
- $(MAKE) -C src/port MAKELEVEL=0 libpgport$(LIBPQ_LIB_SUFFIX).a
+ $(MAKE) -C src/common MAKELEVEL=0
+ $(MAKE) -C src/port MAKELEVEL=0
$(MAKE) -C src/interfaces/libpq MAKELEVEL=0 all-$(LIBPQ_LIBRARY_TYPE)-lib
$(MAKE) -C src/bin/pg_config MAKELEVEL=0
@@ -30,5 +33,5 @@ install-stlib:
.PHONY: install
install: $(LIBPQ_INSTALL_LIBS)
$(MAKE) -C src/include MAKELEVEL=0 install
- $(MAKE) -C src/interfaces/libpq MAKELEVEL=0 install-lib-$(LIBPQ_LIBRARY_TYPE) install-lib-pc install -o all -o install-lib
+ $(MAKE) -C src/interfaces/libpq MAKELEVEL=0 $(EXTRA_TARGET) install-lib-$(LIBPQ_LIBRARY_TYPE) install-lib-pc install -o all -o install-lib
$(MAKE) -C src/bin/pg_config MAKELEVEL=0 install