mirror of
https://https.git.savannah.gnu.org/git/gettext.git
synced 2026-01-27 01:44:30 +00:00
This is standardized in POSIX since POSIX:2001 (= SUSv3). It is supported on all platforms that I could test: GNU, macOS 10.5, FreeBSD 5, NetBSD 7, OpenBSD 6, AIX 7, Solaris 10 and 11, busybox (2019). * gettext-runtime/po/remove-potcdate.sed: Renamed from gettext-runtime/po/remove-potcdate.sin. * gettext-runtime/po/Makefile.in.in (DISTFILES.common): Update. (.SUFFIXES): Remove .sin. (.sin.sed): Remove rule. ($(DOMAIN).pot-update): Use remove-potcdate.sed in $(srcdir). (mostlyclean): Don't remove remove-potcdate.sed. * autogen.sh: Update. * Makefile.am (distcheck-hook): Update. * gettext-tools/examples/po/remove-potcdate.sed: Renamed from gettext-tools/examples/po/remove-potcdate.sin. * gettext-tools/examples/po/Makefile.am ($(DOMAIN).pot-update): Use remove-potcdate.sed in $(srcdir). (MOSTLYCLEANFILES): Don't add remove-potcdate.sed. (EXTRA_DIST): Update. * gettext-tools/examples/hello-*/po/Makefile.am ($(DOMAIN).pot-update): Use remove-potcdate.sed in $(srcdir). (MOSTLYCLEANFILES): Don't add remove-potcdate.sed. (EXTRA_DIST): Update. * gettext-tools/examples/hello-objc-gnustep/po/GNUmakefile ($(DOMAIN).pot-update): Remove dependency on remove-potcdate.sed. (internal-clean): Remove rule. * gettext-tools/examples/hello-*/autogen.sh: Update. * gettext-tools/examples/hello-*/autoclean.sh: Update.
31 lines
566 B
Bash
Executable File
31 lines
566 B
Bash
Executable File
#!/bin/sh
|
|
# Example for use of GNU gettext.
|
|
# This file is in the public domain.
|
|
#
|
|
# Script for cleaning all autogenerated files.
|
|
|
|
test ! -f Makefile || make distclean
|
|
rm -rf autom4te.cache
|
|
|
|
# Brought in by explicit copy.
|
|
rm -f m4/nls.m4
|
|
rm -f m4/po.m4
|
|
rm -f m4/progtest.m4
|
|
rm -f po/remove-potcdate.sed
|
|
|
|
# Generated by aclocal.
|
|
rm -f aclocal.m4
|
|
|
|
# Generated by autoconf.
|
|
rm -f configure
|
|
|
|
# Generated or brought in by automake.
|
|
rm -f Makefile.in
|
|
rm -f m4/Makefile.in
|
|
rm -f po/Makefile.in
|
|
rm -f install-sh
|
|
rm -f missing
|
|
rm -f po/*.pot
|
|
rm -f po/stamp-po
|
|
rm -f po/*.gmo
|