X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gmodule%2FMakefile.am;h=cebfcb46e113e4bd70f624e700cbc4e6417e48a0;hb=f18ba785cad59cbcae640d30b4cc40af9f020310;hp=497d4c603ed70af8b94250658a6e875cb840074b;hpb=a626a650e533eba3ee76f4c8375cf41bc964f6cf;p=platform%2Fupstream%2Fglib.git diff --git a/gmodule/Makefile.am b/gmodule/Makefile.am index 497d4c6..cebfcb4 100644 --- a/gmodule/Makefile.am +++ b/gmodule/Makefile.am @@ -1,23 +1,30 @@ ## Process this file with automake to produce Makefile.in - -INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/gmodule \ - -DG_LOG_DOMAIN=g_log_domain_gmodule @GLIB_DEBUG_FLAGS@ - -EXTRA_DIST = \ - makefile.mingw.in \ - makefile.msc.in \ - gmoduleconf.h.in \ - gmodule.def \ - gmodule-dl.c \ - gmodule-dld.c \ - gmodule-os2.c \ - gmodule-win32.c \ - gmodule-beos.c \ - gmoduleconf.h.win32 \ +include $(top_srcdir)/Makefile.decl + +AM_CPPFLAGS = \ + $(glib_INCLUDES) \ + -DG_LOG_DOMAIN=\"GModule\" \ + @GLIB_DEBUG_FLAGS@ \ + -DG_DISABLE_DEPRECATED + +gmodule.def: gmodule.symbols + $(AM_V_GEN) (echo -e EXPORTS; $(CPP) -P - <$(srcdir)/gmodule.symbols | sed -e '/^$$/d' -e 's/^/ /') > gmodule.def + +EXTRA_DIST += \ + makefile.msc.in \ + gmoduleconf.h.in \ + gmodule.symbols \ + gmodule-dl.c \ + gmodule-dld.c \ + gmodule-dyld.c \ + gmodule-os2.c \ + gmodule-win32.c \ + gmodule-beos.c \ + gmodule-ar.c \ + gmoduleconf.h.win32 \ gmodule.rc.in BUILT_EXTRA_DIST = \ - makefile.mingw \ makefile.msc \ gmodule.rc @@ -28,42 +35,64 @@ glibincludedir=$(includedir)/glib-2.0 glibinclude_HEADERS = \ gmodule.h -libglib = $(top_builddir)/libglib-1.3.la # -lglib +libglib = $(top_builddir)/glib/libglib-2.0.la top_builddir_full=`cd \$(top_builddir); pwd` -lib_LTLIBRARIES = libgmodule-1.3.la libgplugin_a.la libgplugin_b.la +lib_LTLIBRARIES = libgmodule-2.0.la -libgmodule_1_3_la_SOURCES = gmodule.c -libgmodule_1_3_la_LDFLAGS = \ - @G_MODULE_LDFLAGS@ \ - -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ - -export-dynamic +if OS_WIN32_AND_DLL_COMPILATION +if MS_LIB_AVAILABLE +noinst_DATA = gmodule-2.0.lib + +install_ms_lib_cmd = $(INSTALL) gmodule-2.0.lib $(DESTDIR)$(libdir) +uninstall_ms_lib_cmd = -rm $(DESTDIR)$(libdir)/gmodule-2.0.lib +endif +endif + +install-ms-lib: + $(install_ms_lib_cmd) + +uninstall-ms-lib: + $(uninstall_ms_lib_cmd) + +if PLATFORM_WIN32 +no_undefined = -no-undefined +endif + +if OS_WIN32_AND_DLL_COMPILATION +export_symbols = -export-symbols gmodule.def +gmodule_def = gmodule.def -libgmodule_1_3_la_LIBADD = @G_MODULE_LIBS_EXTRA@ @G_MODULE_LIBS@ # $(libglib) -# we should really depend on $(libglib) for libgmodule.la, but libtool has a -# problem with this ;( +gmodule_win32_res = gmodule-win32-res.o +gmodule_win32_res_ldflag = -Wl,$(gmodule_win32_res) -libgplugin_a_la_SOURCES = libgplugin_a.c -libgplugin_a_la_LDFLAGS = @G_MODULE_LDFLAGS@ -avoid-version -module -libgplugin_a_la_LIBADD = @G_MODULE_LIBS@ @G_MODULE_LIBS_EXTRA@ @G_MODULE_PLUGIN_LIBS@ # $(libglib) +install-def-file: + $(INSTALL) gmodule.def $(DESTDIR)$(libdir)/gmodule-2.0.def -libgplugin_b_la_SOURCES = libgplugin_b.c -libgplugin_b_la_LDFLAGS = @G_MODULE_LDFLAGS@ -avoid-version -module -libgplugin_b_la_LIBADD = @G_MODULE_LIBS@ @G_MODULE_LIBS_EXTRA@ @G_MODULE_PLUGIN_LIBS@ # $(libglib) +uninstall-def-file: + -rm $(DESTDIR)$(libdir)/gmodule-2.0.def +else +install-def-file: +uninstall-def-file: +endif -noinst_PROGRAMS = testgmodule -testgmodule_LDFLAGS += @G_MODULE_LDFLAGS@ -testgmodule_LDADD = libgmodule-1.3.la $(libglib) @G_MODULE_LIBS@ +libgmodule_2_0_la_SOURCES = gmodule.c +libgmodule_2_0_la_LDFLAGS = $(GLIB_LINK_FLAGS) \ + $(gmodule_win32_res_ldflag) \ + $(G_MODULE_LDFLAGS) \ + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ + -export-dynamic $(no_undefined) $(export_symbols) + +libgmodule_2_0_la_LIBADD = $(G_MODULE_LIBS_EXTRA) $(G_MODULE_LIBS) $(libglib) -gmodule.rc: $(top_builddir)/config.status $(top_srcdir)/gmodule/gmodule.rc.in - cd $(top_builddir) && CONFIG_FILES=gmodule/$@ CONFIG_HEADERS= $(SHELL) ./config.status +libgmodule_2_0_la_DEPENDENCIES = $(gmodule_win32_res) $(gmodule_def) -makefile.mingw: $(top_builddir)/config.status $(top_srcdir)/gmodule/makefile.mingw.in - cd $(top_builddir) && CONFIG_FILES=gmodule/$@ CONFIG_HEADERS= $(SHELL) ./config.status +gmodule-win32-res.o: gmodule.rc + $(AM_V_GEN) $(WINDRES) gmodule.rc $@ -makefile.msc: $(top_builddir)/config.status $(top_srcdir)/gmodule/makefile.msc.in - cd $(top_builddir) && CONFIG_FILES=gmodule/$@ CONFIG_HEADERS= $(SHELL) ./config.status +gmodule-2.0.lib: libgmodule-2.0.la gmodule.def + lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgmodule-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:gmodule.def -out:$@ .PHONY: files release @@ -72,16 +101,6 @@ files: echo $$p; \ done -install-libLTLIBRARIES: libgmodule-1.3.la - @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(libdir) - @list='libgmodule-1.3.la'; for p in $$list; do \ - if test -f $$p; then \ - echo "$(LIBTOOL) --mode=install $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p"; \ - $(LIBTOOL) --mode=install $(INSTALL_DATA) $$p $(DESTDIR)$(libdir)/$$p; \ - else :; fi; \ - done - release: $(MAKE) dist distdir=$(PACKAGE)`date +"%y%m%d"` @@ -91,3 +110,16 @@ 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-def-file + +uninstall-local: uninstall-ms-lib uninstall-def-file + +if HAVE_GLIB_RUNTIME_LIBDIR +install-data-hook: + mkdir -p $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR) + mv $(DESTDIR)$(libdir)/libgmodule-2.0.so.0 $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR) + mv $(DESTDIR)$(libdir)/libgmodule-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/$(GLIB_RUNTIME_LIBDIR) + rm -f $(DESTDIR)$(libdir)/libgmodule-2.0.so + ln -s $(GLIB_RUNTIME_LIBDIR)/libgmodule-2.0.so.0.$(LT_CURRENT).$(LT_REVISION) $(DESTDIR)$(libdir)/libgmodule-2.0.so +endif