summaryrefslogtreecommitdiffstats
path: root/intl
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-01-14 15:00:27 +0000
committerBruno Haible <bruno@clisp.org>2001-01-14 15:00:27 +0000
commit4d48f86a3ab0114dce08c731553f90727f7dde03 (patch)
tree9a342b816d67bed97131810080576a5fb219e738 /intl
parent0461b1aa4d0542dabcdf8fd5d204eb9798d14d71 (diff)
downloadexternal_gettext-4d48f86a3ab0114dce08c731553f90727f7dde03.zip
external_gettext-4d48f86a3ab0114dce08c731553f90727f7dde03.tar.gz
external_gettext-4d48f86a3ab0114dce08c731553f90727f7dde03.tar.bz2
Fix the clean and distclean targets.
Diffstat (limited to 'intl')
-rw-r--r--intl/ChangeLog6
-rw-r--r--intl/Makefile.in10
2 files changed, 14 insertions, 2 deletions
diff --git a/intl/ChangeLog b/intl/ChangeLog
index 1fc4033..ed2c642 100644
--- a/intl/ChangeLog
+++ b/intl/ChangeLog
@@ -1,5 +1,11 @@
2001-01-01 Bruno Haible <haible@clisp.cons.org>
+ * Makefile.in (mostlyclean): Remove intlh.inst, charset.alias,
+ ref-add.sed, ref-del.sed.
+ (distclean): In the gettext package, remove VERSION.
+
+2001-01-01 Bruno Haible <haible@clisp.cons.org>
+
Finish implementation of plural form handling.
* dcigettext.c (known_translation_t): Rename 'domain' field to
'domainname'. Remove 'plindex' field. Add 'domain' and
diff --git a/intl/Makefile.in b/intl/Makefile.in
index f84c719..fa1f1d9 100644
--- a/intl/Makefile.in
+++ b/intl/Makefile.in
@@ -1,5 +1,5 @@
# Makefile for directory with message catalog handling in GNU NLS Utilities.
-# Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
+# Copyright (C) 1995-1998, 2000, 2001 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
@@ -239,12 +239,18 @@ ID: $(HEADERS) $(SOURCES)
mostlyclean:
- rm -f *.a *.o *.lo core core.* plusral.h
+ rm -f *.a *.o *.lo core core.*
+ rm -f intlh.inst charset.alias ref-add.sed ref-del.sed
clean: mostlyclean
distclean: clean
rm -f Makefile ID TAGS po2msg.sed po2tbl.sed
+ if test "$(PACKAGE)" = gettext; then \
+ rm -f $(DISTFILES.normal); \
+ else \
+ : ; \
+ fi
maintainer-clean: distclean
@echo "This command is intended for maintainers to use;"