diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-05-27 10:29:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-05-27 10:29:02 +0000 |
commit | 7e7a548e7837d533f790b13c5b200549fe95c5b2 (patch) | |
tree | 573b41d834a6248bb318ad96339581b1fd25db8c /catgets/Makefile | |
parent | 6598ac30319f3c5483c7bc95214c48b6442b53bd (diff) | |
download | glibc-7e7a548e7837d533f790b13c5b200549fe95c5b2.tar glibc-7e7a548e7837d533f790b13c5b200549fe95c5b2.tar.gz glibc-7e7a548e7837d533f790b13c5b200549fe95c5b2.tar.bz2 glibc-7e7a548e7837d533f790b13c5b200549fe95c5b2.zip |
Update.
1998-05-25 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* catgets/Makefile ($(objpfx)de.cat): Renamed from
do-gencat-test. Use automatic variables.
($(objpfx)de.msg): Fix reference to po file.
1998-05-26 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makeconfig ($(common-objpfx)gnu/lib-names.stmp): Use
$(move-if-change).
1998-05-25 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* intl/dcgettext.c: Fix typo.
Diffstat (limited to 'catgets/Makefile')
-rw-r--r-- | catgets/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/catgets/Makefile b/catgets/Makefile index 7ce634ff5b..d6646f3abd 100644 --- a/catgets/Makefile +++ b/catgets/Makefile @@ -43,13 +43,12 @@ CPPFLAGS := -DNLSPATH='"$(localedir)/%L/%N:$(localedir)/%L/LC_MESSAGES/%N:$(loca generated = de.msg de.cat -.PHONY: do-gencat-test -tests: do-gencat-test +tests: $(objpfx)de.cat # This test just checks whether the program produces any error or not. # The result is not tested. -do-gencat-test: $(objpfx)de.msg $(objpfx)gencat - $(built-program-cmd) $(objpfx)de.cat $(objpfx)de.msg +$(objpfx)de.cat: $(objpfx)de.msg $(objpfx)gencat + $(built-program-cmd) $@ $< # Generate a non-simple input file. -$(objpfx)de.msg: $(..)/po/de.po +$(objpfx)de.msg: $(..)po/de.po sed -f xopen-msg.sed $< > $@ |