From: Bruno Haible Date: Sun, 14 Jan 2001 15:00:27 +0000 (+0000) Subject: Fix the clean and distclean targets. X-Git-Tag: v0.10.36~190 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d48f86a3ab0114dce08c731553f90727f7dde03;p=thirdparty%2Fgettext.git Fix the clean and distclean targets. --- diff --git a/intl/ChangeLog b/intl/ChangeLog index 1fc403312..ed2c64285 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,9 @@ +2001-01-01 Bruno Haible + + * 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 Finish implementation of plural form handling. diff --git a/intl/Makefile.in b/intl/Makefile.in index f84c71994..fa1f1d937 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;"