Add convenience makefile rule "make pot" for

updating the translation template. Rename the rule for
auto-generation of ChangeLog.svn from svn to "ChangeLog.svn".


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12084 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2005-12-03 17:00:28 +00:00
parent cea172499d
commit 5793cd5c60
2 changed files with 18 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2005-12-03 Christian Stimming <stimming@tuhh.de>
* Makefile.am: Add convenience makefile rule "make pot" for
updating the translation template. Rename the rule for
auto-generation of ChangeLog.svn from svn to "ChangeLog.svn".
2005-12-03 Joshua Sled <jsled@asynchronous.org>
* GNOME2_STATUS: remove GOG-porting notes, spelling fixes.

View File

@ -152,7 +152,15 @@ distclean-local:
libtool: $(LIBTOOL_DEPS)
$(SHELL) ./config.status --recheck
ChangeLog:
svn log -v --xml -r HEAD:11782 http://svn.gnucash.org/repo/gnucash | \
xsltproc --stringparam strip-prefix "gnucash" \
--stringparam include-rev "yes" ./macros/svn2cl.xsl - > ./ChangeLog.svn
pot:
rm -f intl-scm/guile-strings.c
make -C intl-scm
rm -f po/$(PACKAGE).pot
make -C po $(PACKAGE).pot
SVN = svn
XSLTPROC = xsltproc
ChangeLog.svn:
$(SVN) log -v --xml -r HEAD:11782 http://svn.gnucash.org/repo/gnucash | \
$(XSLTPROC) --stringparam strip-prefix "gnucash" \
--stringparam include-rev "yes" $(srcdir)/macros/svn2cl.xsl - > $@