Clean gettext-files file in clean target

It used to be cleaned in maintainer-clean, but that is inconsistent
with other cleaning of NLS files in nls-global.mk, and it's also wrong
overall, because it's not part of the distribution tarball, which is
the base definition of the maintainer-clean target.
This commit is contained in:
Peter Eisentraut 2011-11-09 20:56:19 +02:00
parent 452d1d193d
commit 3ad2c8e168
1 changed files with 3 additions and 3 deletions

View File

@ -14,8 +14,8 @@ GETTEXT_FLAGS = $(BACKEND_COMMON_GETTEXT_FLAGS) \
gettext-files: distprep
find $(srcdir)/ $(srcdir)/../port/ -name '*.c' -print >$@
my-maintainer-clean:
my-clean:
rm -f gettext-files
.PHONY: my-maintainer-clean
maintainer-clean: my-maintainer-clean
.PHONY: my-clean
clean: my-clean