early-access version 2853
This commit is contained in:
37
externals/vcpkg/ports/libpq/Makefile
vendored
Executable file
37
externals/vcpkg/ports/libpq/Makefile
vendored
Executable file
@@ -0,0 +1,37 @@
|
||||
subdir = .
|
||||
top_builddir = .
|
||||
include src/Makefile.global
|
||||
|
||||
.NOTPARALLEL:
|
||||
|
||||
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
|
||||
$(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
|
||||
|
||||
.PHONY: install-stlib
|
||||
install-stlib:
|
||||
$(MAKE) -C src/common MAKELEVEL=0 install -o all
|
||||
rm -f '$(DESTDIR)$(libdir)/libpgcommon_shlib.a'
|
||||
$(MAKE) -C src/port MAKELEVEL=0 install -o all
|
||||
rm -f '$(DESTDIR)$(libdir)/libpgport_shlib.a'
|
||||
|
||||
.PHONY: install
|
||||
install: $(LIBPQ_INSTALL_LIBS)
|
||||
$(MAKE) -C src/include MAKELEVEL=0 install
|
||||
$(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
|
||||
Reference in New Issue
Block a user