libtool installs/uninstalls the import library, no need to do it
[platform/upstream/glib.git] / glib / Makefile.am
index a8cb5c7..ad051b0 100644 (file)
@@ -13,16 +13,37 @@ DIST_SUBDIRS = libcharset gnulib
 INCLUDES = -I$(top_srcdir) -DG_LOG_DOMAIN=\"GLib\" \
        $(GLIB_DEBUG_FLAGS) -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION 
 
+glib.def: glib.symbols
+       (echo -e EXPORTS; $(CPP) -P -DINCLUDE_VARIABLES -DINCLUDE_INTERNAL_SYMBOLS -DG_OS_WIN32 -DALL_FILES - <$(srcdir)/glib.symbols | sed -e '/^$$/d' -e 's/^/        /' -e 's/G_GNUC_[^ ]*//g') > glib.def
+
+galias.h: glib.symbols
+         $(PERL) $(srcdir)/makegalias.pl < $(srcdir)/glib.symbols > galias.h
+
+galiasdef.c: glib.symbols
+         $(PERL) $(srcdir)/makegalias.pl -def < $(srcdir)/glib.symbols > galiasdef.c
+
+if OS_LINUX
+if HAVE_GNUC_VISIBILITY
+TESTS = abicheck.sh
+endif
+endif
+
+BUILT_SOURCES = galias.h galiasdef.c
+
 EXTRA_DIST =                   \
        makefile.msc.in         \
        glib.rc.in              \
        gen-unicode-tables.pl   \
-       glib.def
+       makegalias.pl           \
+       abicheck.sh             \
+       glib.symbols
 
 # These may be in the builddir too
 BUILT_EXTRA_DIST =             \
        makefile.msc            \
-       glib.rc
+       glib.rc                 \
+       galias.h                \
+       galiasdef.c
 
 lib_LTLIBRARIES = libglib-2.0.la
 
@@ -49,6 +70,7 @@ libglib_2_0_la_SOURCES =      \
        gcompletion.c           \
        gconvert.c              \
        gdataset.c              \
+       gdatasetprivate.h       \
        gdate.c                 \
        gdir.c                  \
        gerror.c                \
@@ -56,13 +78,16 @@ libglib_2_0_la_SOURCES =    \
        ghash.c                 \
        ghook.c                 \
        giochannel.c            \
+       gkeyfile.c              \
        glibintl.h              \
        glist.c                 \
        gmain.c                 \
+       gmappedfile.c           \
        gmarkup.c               \
        gmem.c                  \
        gmessages.c             \
        gnode.c                 \
+       goption.c               \
        gpattern.c              \
        gprimes.c               \
        gqsort.c                \
@@ -72,6 +97,7 @@ libglib_2_0_la_SOURCES =      \
        gscanner.c              \
        gshell.c                \
        gslist.c                \
+       gstdio.c                \
        gstrfuncs.c             \
        gstring.c               \
        gthread.c               \
@@ -126,13 +152,16 @@ glibsubinclude_HEADERS =   \
        gi18n.h         \
        gi18n-lib.h     \
        giochannel.h    \
+       gkeyfile.h      \
        glist.h         \
        gmacros.h       \
        gmain.h         \
+       gmappedfile.h   \
        gmarkup.h       \
        gmem.h          \
        gmessages.h     \
        gnode.h         \
+       goption.h       \
        gpattern.h      \
        gprimes.h       \
        gqsort.h        \
@@ -144,6 +173,7 @@ glibsubinclude_HEADERS =   \
        gshell.h        \
        gslist.h        \
        gspawn.h        \
+       gstdio.h        \
        gstrfuncs.h     \
        gstring.h       \
        gthread.h       \
@@ -156,14 +186,14 @@ glibsubinclude_HEADERS =   \
        gwin32.h        \
        gprintf.h
 
-install-data-local: install-ms-lib install-libtool-import-lib
+install-data-local: install-ms-lib install-def-file
        @if test -f $(glibincludedir)/glist.h ; then                                    \
          echo "*** Old headers found in $(glibincludedir). You should remove the" ;    \
          echo "*** contents of this directory and type 'make install' again." ;        \
          false ;                                                                       \
         fi
 
-uninstall-local: uninstall-ms-lib uninstall-libtool-import-lib
+uninstall-local: uninstall-ms-lib uninstall-def-file
 
 if PLATFORM_WIN32
 no_undefined = -no-undefined
@@ -171,17 +201,18 @@ endif
 
 if OS_WIN32
 # This requires a very new libtool
-export_symbols = -export-symbols $(srcdir)/glib.def
+export_symbols = -export-symbols glib.def
 
-install-libtool-import-lib:
-       $(INSTALL) .libs/libglib-2.0.dll.a $(DESTDIR)$(libdir)
-       $(INSTALL) $(srcdir)/glib.def $(DESTDIR)$(libdir)/glib-2.0.def
+install-def-file:
+       $(INSTALL) glib.def $(DESTDIR)$(libdir)/glib-2.0.def
 
-uninstall-libtool-import-lib:
-       -rm $(DESTDIR)$(libdir)/libglib-2.0.dll.a $(DESTDIR)$(libdir)/glib-2.0.def
+uninstall-def-file:
+       -rm $(DESTDIR)$(libdir)/glib-2.0.def
 else
-install-libtool-import-lib:
-uninstall-libtool-import-lib:
+install-def-file:
+uninstall-def-file:
+
+export_symbols = $(LIBTOOL_EXPORT_OPTIONS)
 endif
 
 libglib_2_0_la_LIBADD = libcharset/libcharset.la $(printf_la) @GIO@ @GSPAWN@ @PLATFORMDEP@ @G_LIB_WIN32_RESOURCE@ @ICONV_LIBS@ @G_LIBS_EXTRA@