diff options
author | Peter Eisentraut | 2019-10-20 08:19:13 +0000 |
---|---|---|
committer | Peter Eisentraut | 2019-10-20 08:19:13 +0000 |
commit | ea9e06ac66d3e9584950f52878c8e4b71f963610 (patch) | |
tree | bd758488b863558399f540299f1cded5c7291edc /src/interfaces/ecpg/compatlib/Makefile | |
parent | 5d3587d14b753cb25b0ebcd549d95e1b6ceebce4 (diff) |
Clean up MinGW def file generation
There were some leftovers from ancient ad-hoc ways to build on
Windows, prior to the standardization on MSVC and MinGW. We don't
need to build a lib$(NAME)ddll.def (debug build, as opposed to
lib$(NAME)dll.def) for MinGW, since nothing uses that. We also don't
need to build the regular .def file during distprep, since the MinGW
build environment is perfectly capable of creating that normally at
build time.
Discussion: https://www.postgresql.org/message-id/flat/0f9db9f8-47b8-a48b-6ccc-15b22b412316%402ndquadrant.com
Diffstat (limited to 'src/interfaces/ecpg/compatlib/Makefile')
-rw-r--r-- | src/interfaces/ecpg/compatlib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/compatlib/Makefile b/src/interfaces/ecpg/compatlib/Makefile index cd9879ba75a..b9a4fbe9c01 100644 --- a/src/interfaces/ecpg/compatlib/Makefile +++ b/src/interfaces/ecpg/compatlib/Makefile @@ -54,4 +54,4 @@ uninstall: uninstall-lib clean distclean: clean-lib rm -f $(OBJS) -maintainer-clean: distclean maintainer-clean-lib +maintainer-clean: distclean |