diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | intl/ChangeLog | 6 | ||||
-rw-r--r-- | intl/Makefile.in | 7 | ||||
-rw-r--r-- | po/ChangeLog | 5 | ||||
-rw-r--r-- | po/Makefile.in.in | 2 |
5 files changed, 21 insertions, 3 deletions
@@ -1,6 +1,8 @@ -Version 0.11.6 - September 2002 +Version 0.11.6 - October 2002 * xgettext now also supports Smalltalk and PHP. + +* Compatibility with automake-1.7. Version 0.11.5 - August 2002 diff --git a/intl/ChangeLog b/intl/ChangeLog index ca9026d..ad43cb8 100644 --- a/intl/ChangeLog +++ b/intl/ChangeLog @@ -1,3 +1,9 @@ +2002-10-16 Bruno Haible <bruno@clisp.org> + + * Makefile.in (ps, pdf, html, ctags): New targets, for automake-1.7 + compatibility. + (CTAGS): New rule. + 2002-09-18 Bruno Haible <bruno@clisp.org> * libgnuintl.h (_INTL_REDIRECT_ASM): Don't define when using Apple cc. diff --git a/intl/Makefile.in b/intl/Makefile.in index 0486dc9..737dc94 100644 --- a/intl/Makefile.in +++ b/intl/Makefile.in @@ -273,7 +273,7 @@ uninstall: : ; \ fi -info dvi: +info dvi ps pdf html: $(OBJECTS): ../config.h libgnuintl.h bindtextdom.$lo dcgettext.$lo dcigettext.$lo dcngettext.$lo dgettext.$lo dngettext.$lo finddomain.$lo gettext.$lo intl-compat.$lo loadmsgcat.$lo localealias.$lo ngettext.$lo textdomain.$lo: gettextP.h gmo.h loadinfo.h @@ -287,6 +287,11 @@ tags: TAGS TAGS: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && etags -o $$here/TAGS $(HEADERS) $(SOURCES) +ctags: CTAGS + +CTAGS: $(HEADERS) $(SOURCES) + here=`pwd`; cd $(srcdir) && ctags -o $$here/CTAGS $(HEADERS) $(SOURCES) + id: ID ID: $(HEADERS) $(SOURCES) diff --git a/po/ChangeLog b/po/ChangeLog index 5b3a75e..88e8208 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,8 @@ +2002-10-16 Bruno Haible <bruno@clisp.org> + + * Makefile.in.in (ps, pdf, html, ctags, CTAGS): New targets, for + automake-1.7 compatibility. + 2002-10-03 Bruno Haible <bruno@clisp.org> Avoid modifying PO files if the POT file is the same except for a diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 165e896..a9f4dbc 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -256,7 +256,7 @@ uninstall-data-yes: check: all -dvi info tags TAGS ID: +info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed |