mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
libtool installs/uninstalls the import library, no need to do it
2005-06-26 Tor Lillqvist <tml@novell.com> * Makefile.am: libtool installs/uninstalls the import library, no need to do it ourselves. Do still install/uninstall the .def file, though.
This commit is contained in:
parent
ef48ce636b
commit
2e13949ab6
@ -1,3 +1,9 @@
|
||||
2005-06-26 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* Makefile.am: libtool installs/uninstalls the import library, no
|
||||
need to do it ourselves. Do still install/uninstall the .def file,
|
||||
though.
|
||||
|
||||
2005-06-24 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* Makefile.am (install-libtool-import-lib): Current GNU tools do
|
||||
|
@ -54,15 +54,14 @@ endif
|
||||
if OS_WIN32
|
||||
export_symbols = -export-symbols $(srcdir)/gmodule.def
|
||||
|
||||
install-libtool-import-lib:
|
||||
$(INSTALL) .libs/libgmodule-2.0.dll.a $(DESTDIR)$(libdir)
|
||||
install-def-file:
|
||||
$(INSTALL) $(srcdir)/gmodule.def $(DESTDIR)$(libdir)/gmodule-2.0.def
|
||||
|
||||
uninstall-libtool-import-lib:
|
||||
-rm $(DESTDIR)$(libdir)/libgmodule-2.0.dll.a $(DESTDIR)$(libdir)/gmodule-2.0.def
|
||||
uninstall-def-file:
|
||||
-rm $(DESTDIR)$(libdir)/gmodule-2.0.def
|
||||
else
|
||||
install-libtool-import-lib:
|
||||
uninstall-libtool-import-lib:
|
||||
install-def-file:
|
||||
uninstall-def-file:
|
||||
endif
|
||||
|
||||
libgmodule_2_0_la_SOURCES = gmodule.c
|
||||
@ -100,6 +99,6 @@ dist-hook: $(BUILT_EXTRA_DIST)
|
||||
cp $$d/$$f $(distdir) || exit 1; done
|
||||
|
||||
|
||||
install-data-local: install-ms-lib install-libtool-import-lib
|
||||
install-data-local: install-ms-lib install-def-file
|
||||
|
||||
uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
|
||||
uninstall-local: uninstall-ms-lib uninstall-def-file
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-06-26 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* Makefile.am: libtool installs/uninstalls the import library, no
|
||||
need to do it ourselves. Do still install/uninstall the .def file,
|
||||
though.
|
||||
|
||||
2005-06-24 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* Makefile.am (install-libtool-import-lib): Current GNU tools do
|
||||
|
@ -53,15 +53,14 @@ endif
|
||||
if OS_WIN32
|
||||
export_symbols = -export-symbols gobject.def
|
||||
|
||||
install-libtool-import-lib:
|
||||
$(INSTALL) .libs/libgobject-2.0.dll.a $(DESTDIR)$(libdir)
|
||||
install-def-file:
|
||||
$(INSTALL) gobject.def $(DESTDIR)$(libdir)/gobject-2.0.def
|
||||
|
||||
uninstall-libtool-import-lib:
|
||||
-rm $(DESTDIR)$(libdir)/libgobject-2.0.dll.a $(DESTDIR)$(libdir)/gobject-2.0.def
|
||||
uninstall-def-file:
|
||||
-rm $(DESTDIR)$(libdir)/gobject-2.0.def
|
||||
else
|
||||
install-libtool-import-lib:
|
||||
uninstall-libtool-import-lib:
|
||||
install-def-file:
|
||||
uninstall-def-file:
|
||||
|
||||
export_symbols = $(LIBTOOL_EXPORT_OPTIONS)
|
||||
endif
|
||||
@ -244,9 +243,9 @@ dist-hook: $(BUILT_EXTRA_DIST)
|
||||
if test -f $$f; then d=.; else d=$(srcdir); fi; \
|
||||
cp $$d/$$f $(distdir) || exit 1; done
|
||||
|
||||
install-data-local: install-ms-lib install-libtool-import-lib
|
||||
install-data-local: install-ms-lib install-def-file
|
||||
|
||||
uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
|
||||
uninstall-local: uninstall-ms-lib uninstall-def-file
|
||||
|
||||
distclean-local:
|
||||
if test $(srcdir) = .; then :; else \
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-06-26 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* Makefile.am: libtool installs/uninstalls the import library, no
|
||||
need to do it ourselves. Do still install/uninstall the .def file,
|
||||
though.
|
||||
|
||||
2005-06-10 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.7.0 ===
|
||||
|
@ -43,15 +43,14 @@ endif
|
||||
if OS_WIN32
|
||||
export_symbols = -export-symbols $(srcdir)/gthread.def
|
||||
|
||||
install-libtool-import-lib:
|
||||
$(INSTALL) .libs/libgthread-2.0.dll.a $(DESTDIR)$(libdir)
|
||||
install-def-file:
|
||||
$(INSTALL) $(srcdir)/gthread.def $(DESTDIR)$(libdir)/gthread-2.0.def
|
||||
|
||||
uninstall-libtool-import-lib:
|
||||
-rm $(DESTDIR)$(libdir)/libgthread-2.0.dll.a $(DESTDIR)$(libdir)/gthread-2.0.def
|
||||
uninstall-def-file:
|
||||
-rm $(DESTDIR)$(libdir)/gthread-2.0.def
|
||||
else
|
||||
install-libtool-import-lib:
|
||||
uninstall-libtool-import-lib:
|
||||
install-def-file:
|
||||
uninstall-def-file:
|
||||
endif
|
||||
|
||||
libgthread_2_0_la_SOURCES = gthread-impl.c
|
||||
@ -77,7 +76,7 @@ dist-hook: $(BUILT_EXTRA_DIST)
|
||||
if test -f $$f; then d=.; else d=$(srcdir); fi; \
|
||||
cp $$d/$$f $(distdir) || exit 1; done
|
||||
|
||||
install-data-local: install-ms-lib install-libtool-import-lib
|
||||
install-data-local: install-ms-lib install-def-file
|
||||
|
||||
uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
|
||||
uninstall-local: uninstall-ms-lib uninstall-def-file
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user