1Description:
2
3Files:
4m4/locale-fr.m4
5m4/locale-ja.m4
6
7Depends-on:
8
9configure.ac:
10
11Makefile.am:
12
13# Specify that libgettextlib should installed in $(libdir).
14lib_LTLIBRARIES = libgettextlib.la
15
16# Need $(LTLIBUNISTRING) because ulc_width_linebreaks, uc_width, etc. may be
17# taken from libunistring, when the configure option --with-libunistring-prefix
18# was given.
19# Need @LTLIBINTL@ because many source files use gettext().
20# Need @LTLIBICONV@ because linebreak.c and striconv.c use iconv().
21# Need @LIB_ACL@ because copy-file.c uses acl.h.
22# As of 2010-10-04, these are all added by gnulib-tool automatically.
23#lib_LDFLAGS += $(LTLIBUNISTRING) @LTLIBINTL@ @LTLIBICONV@ @LIB_ACL@
24
25lib_LDFLAGS += -release @VERSION@
26
27# Tell the mingw or Cygwin linker which symbols to export.
28if WOE32DLL
29lib_SOURCES += ../woe32dll/gettextlib-exports.c
30lib_LDFLAGS += -Wl,--export-all-symbols
31AM_CPPFLAGS += @GETTEXTLIB_EXPORTS_FLAGS@
32endif
33
34# No need to install libgettextlib.a, except on AIX.
35install-exec-local: install-libLTLIBRARIES install-exec-clean
36install-exec-clean:
37	case "@host_os@" in \
38	  aix*) ;; \
39	  *) rm -f $(DESTDIR)$(libdir)/libgettextlib.a ;; \
40	esac
41
42Include:
43
44License:
45GPL
46
47Maintainer:
48Bruno Haible
49
50