diff options
author | Michael Meeks <michael@helixcode.com> | 2000-10-15 02:59:25 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-10-15 02:59:25 +0800 |
commit | 4b69699f56ca1070f7c5782a8b8c485b24eae39a (patch) | |
tree | ecc7ce653c957ecb4e25d843ec1d9c233d7f960f | |
parent | b394895eb670571fb5b235b45f8b0546f087c1c8 (diff) | |
download | gsoc2013-evolution-4b69699f56ca1070f7c5782a8b8c485b24eae39a.tar gsoc2013-evolution-4b69699f56ca1070f7c5782a8b8c485b24eae39a.tar.gz gsoc2013-evolution-4b69699f56ca1070f7c5782a8b8c485b24eae39a.tar.bz2 gsoc2013-evolution-4b69699f56ca1070f7c5782a8b8c485b24eae39a.tar.lz gsoc2013-evolution-4b69699f56ca1070f7c5782a8b8c485b24eae39a.tar.xz gsoc2013-evolution-4b69699f56ca1070f7c5782a8b8c485b24eae39a.tar.zst gsoc2013-evolution-4b69699f56ca1070f7c5782a8b8c485b24eae39a.zip |
Add rule to use bonobo-ui-extract to build translatable files.
2000-10-14 Michael Meeks <michael@helixcode.com>
* Makefile.am: Add rule to use bonobo-ui-extract to build
translatable files.
svn path=/trunk/; revision=5921
-rw-r--r-- | ui/ChangeLog | 5 | ||||
-rw-r--r-- | ui/Makefile.am | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/ui/ChangeLog b/ui/ChangeLog index 579e047af4..7c003d5bce 100644 --- a/ui/ChangeLog +++ b/ui/ChangeLog @@ -1,5 +1,10 @@ 2000-10-14 Michael Meeks <michael@helixcode.com> + * Makefile.am: Add rule to use bonobo-ui-extract to build + translatable files. + +2000-10-14 Michael Meeks <michael@helixcode.com> + * evolution-addressbook-ldap.xml: drasticaly shrink to just the new features available with ldap; don't duplicate stuff. diff --git a/ui/Makefile.am b/ui/Makefile.am index 6746249f6f..aec14eb600 100644 --- a/ui/Makefile.am +++ b/ui/Makefile.am @@ -12,3 +12,9 @@ uidir = $(datadir)/gnome/ui ui_DATA = $(XML_FILES) EXTRA_DIST = $(XML_FILES) + +BUILT_SOURCES=$(XML_FILES:.xml=.h) + +%.h : %.xml + bonobo-ui-extract $^ > $@ + |