diff options
author | Tor Lillqvist <tml@iki.fi> | 2003-01-04 06:47:14 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2003-01-04 06:47:14 +0000 |
commit | 933b7ba4b68aba225585b1853a14cc074a1758cd (patch) | |
tree | 86ba56f0b7e17b8b71379544c7ec30ee0d220cf2 /gmodule | |
parent | a0821bd753a9cb68cedd7fd630d0bc45a48345fc (diff) | |
download | glib-933b7ba4b68aba225585b1853a14cc074a1758cd.tar.gz |
[Win32] Install also the .def files, to help users generate import
2003-01-04 Tor Lillqvist <tml@iki.fi>
* {glib,gmodule,gobject,gthread}/Makefile.am:
[Win32] Install also the .def files, to help users generate
import libraries for other compilers. Uninstall, too.
* glib-zip.in: Include .def files from above.
Diffstat (limited to 'gmodule')
-rw-r--r-- | gmodule/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gmodule/Makefile.am b/gmodule/Makefile.am index 0db06b9b1..2007f70fd 100644 --- a/gmodule/Makefile.am +++ b/gmodule/Makefile.am @@ -57,8 +57,10 @@ export_symbols = -export-symbols gmodule.def install-libtool-import-lib: $(INSTALL) .libs/libgmodule-2.0.dll.a $(DESTDIR)$(libdir) + $(INSTALL) gmodule.def $(DESTDIR)$(libdir)/gmodule-2.0.def + uninstall-libtool-import-lib: - -rm $(DESTDIR)$(libdir)/libgmodule-2.0.dll.a + -rm $(DESTDIR)$(libdir)/libgmodule-2.0.dll.a $(DESTDIR)$(libdir)/gmodule-2.0.def else install-libtool-import-lib: uninstall-libtool-import-lib: |