mirror of
https://https.git.savannah.gnu.org/git/gettext.git
synced 2026-01-30 19:34:40 +00:00
* gettext-tools/examples/hello-modula2/INSTALL: New file. * gettext-tools/examples/hello-modula2/autogen.sh: New file. * gettext-tools/examples/hello-modula2/autoclean.sh: New file. * gettext-tools/examples/hello-modula2/hello.mod.in: New file. * gettext-tools/examples/hello-modula2/Makefile.am: New file. * gettext-tools/examples/hello-modula2/configure.ac: New file. * gettext-tools/examples/hello-modula2/m4/Makefile.am: New file. * gettext-tools/examples/hello-modula2/po/LINGUAS: New file. * gettext-tools/examples/hello-modula2/po/Makefile.am: New file. * gettext-tools/examples/installpaths.in: Define also libdir. * gettext-tools/m4/Makefile.am (examplesbuildaux_DATA): Add modula2comp.m4. * gettext-tools/examples/Makefile.am (EXAMPLESFILES, EXAMPLESDIRS): Add hello-modula2. * gettext-tools/examples/po/Makefile.am (POTFILES, SMALLPOTS): Update for hello-modula2. (hello-modula2.pot): New target. (SMALLPOFILES_FOR_lang): Update for hello-modula2. ($(srcdir)/../hello-modula2/po/$(LL).po): New rule. * gettext-tools/examples/check-examples (func_check_autoclean_all, func_check_distclean_all, func_check_maintainerclean_all, func_check_maintainerclean_vpath_all, func_check_dist_all, func_check_dist_vpath_all, func_check_install_all, func_check_uninstall_all, func_check_distcheck_all, func_check_all): Handle hello-modula2 as well. * gettext-tools/examples/README: Mention hello-modula2. * gettext-tools/doc/lang-modula2.texi: Likewise. * NEWS: Likewise.
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
# Shell script snippet that records various directories found by 'configure'.
|
|
|
|
# Copyright (C) 2003-2025 Free Software Foundation, Inc.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
prefix='@prefix@'
|
|
exec_prefix="@exec_prefix@"
|
|
libdir="@libdir@"
|
|
datarootdir="@datarootdir@"
|
|
datadir="@datadir@"
|
|
docdir="@docdir@"
|
|
includedir="@includedir@"
|
|
ACLOCALDIR="@aclocaldir@"
|
|
GETTEXTSRCDIR="@datadir@/gettext"
|
|
GETTEXTSRCPODIR="@datadir@/gettext/po"
|
|
EXAMPLESCONFIGDIR="@docdir@/examples/build-aux"
|