• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## Makefile for the gettext-runtime directory of GNU gettext
2## Copyright (C) 1995-2006, 2010, 2012-2016, 2018-2019 Free Software Foundation,
3## Inc.
4##
5## This program is free software: you can redistribute it and/or modify
6## it under the terms of the GNU General Public License as published by
7## the Free Software Foundation; either version 3 of the License, or
8## (at your option) any later version.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13## GNU General Public License for more details.
14##
15## You should have received a copy of the GNU General Public License
16## along with this program.  If not, see <https://www.gnu.org/licenses/>.
17
18## Process this file with automake to produce Makefile.in.
19
20AUTOMAKE_OPTIONS = 1.5 gnu no-dependencies
21ACLOCAL_AMFLAGS = -I m4 -I ../m4 -I gnulib-m4
22
23# The list of subdirectories depends on whether --disable-libasprintf was
24# specified.
25if ENABLE_LIBASPRINTF
26SUBDIR_libasprintf = libasprintf
27else
28SUBDIR_libasprintf =
29endif
30SUBDIRS = doc intl intl-java intl-csharp gnulib-lib $(SUBDIR_libasprintf) src po man m4 tests
31
32EXTRA_DIST = BUGS
33
34
35# Files installed for the user and for use by gettextize.
36
37gettextsrcdir = $(datadir)/gettext
38gettextsrc_DATA = ABOUT-NLS
39
40
41# Allow users to use "gnulib-tool --update".
42EXTRA_DIST += gnulib-m4/gnulib-cache.m4
43
44
45# Windows support.
46
47EXTRA_DIST += INSTALL.windows
48
49
50maintainer-update-po: $(top_builddir)/config.status
51	$(SHELL) ./config.status --recheck
52	$(SHELL) ./config.status po/Makefile.in po-directories
53	cd po && $(MAKE) update-po
54