diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-12 11:33:28 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-12 11:33:28 +0800 |
commit | c31e31f1fd019ac4297d840761026e64ea6a0adf (patch) | |
tree | 1d6e09604f49d15ec00d3ee26bca8ba9477d6e12 /e-util/Makefile.am | |
parent | 443ab1ee8c4abf0c07727bc2e93b8f892294d324 (diff) | |
download | gsoc2013-evolution-c31e31f1fd019ac4297d840761026e64ea6a0adf.tar.gz gsoc2013-evolution-c31e31f1fd019ac4297d840761026e64ea6a0adf.tar.zst gsoc2013-evolution-c31e31f1fd019ac4297d840761026e64ea6a0adf.zip |
Tool to do i18n string extraction for error xml files.
2004-05-12 Not Zed <NotZed@Ximian.com>
* e-error-tool.c: Tool to do i18n string extraction for error xml
files.
2004-05-10 Not Zed <NotZed@Ximian.com>
* e-fsutils.c (e_fsutils_usage): new file/function, get disk usage
of a path, in 1024 byte blocks.
(e_fsutils_avail): new file/function, get disk space available for
a given path, in 1024 byte blocks.
* e-meta.[ch]: Removed. Poor idea badly executed, and no longer used.
* e-path.h: add a fixme about deprecation.
svn path=/trunk/; revision=25868
Diffstat (limited to 'e-util/Makefile.am')
-rw-r--r-- | e-util/Makefile.am | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/e-util/Makefile.am b/e-util/Makefile.am index 54fd0affa6..e37aba449c 100644 --- a/e-util/Makefile.am +++ b/e-util/Makefile.am @@ -23,6 +23,7 @@ eutilinclude_HEADERS = \ e-dialog-utils.h \ e-dialog-widgets.h \ e-folder-map.h \ + e-fsutils.h \ e-gtk-utils.h \ e-gui-utils.h \ e-host-utils.h \ @@ -32,7 +33,6 @@ eutilinclude_HEADERS = \ e-list-iterator.h \ e-list.h \ e-memory.h \ - e-meta.h \ e-mktemp.h \ e-msgport.h \ e-passwords.h \ @@ -53,7 +53,6 @@ libeutil_la_SOURCES = \ e-account-list.c \ e-account.c \ e-bconf-map.c \ - e-folder-map.c \ e-categories-config.c \ e-categories-master-list-wombat.c \ e-component-listener.c \ @@ -61,6 +60,8 @@ libeutil_la_SOURCES = \ e-corba-utils.c \ e-dialog-utils.c \ e-dialog-widgets.c \ + e-folder-map.c \ + e-fsutils.c \ e-gtk-utils.c \ e-gui-utils.c \ e-host-utils.c \ @@ -70,7 +71,6 @@ libeutil_la_SOURCES = \ e-list-iterator.c \ e-list.c \ e-memory.c \ - e-meta.c \ e-mktemp.c \ e-msgport.c \ e-passwords.c \ @@ -111,6 +111,17 @@ endif libeconduit_la_SOURCES = $(pilot_compile) +# e-error-tool + +e_error_tool_SOURCES = \ + e-error-tool.c + +e_error_tool_LDADD = \ + $(GNOME_FULL_LIBS) + +noinst_PROGRAMS = \ + e-error-tool + EXTRA_DIST = \ $(pilot_sources) \ ChangeLog.pre-1-4 \ |