From c6727d66ade72df6fbaff9f111a06993aeefdecc Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 26 Nov 2009 21:16:40 -0500 Subject: Implement a new 'killev' program. For now this only terminates Evolution, but the same basic approach should also be used with the Evolution-Data-Server D-Bus services. --- shell/Makefile.am | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'shell/Makefile.am') diff --git a/shell/Makefile.am b/shell/Makefile.am index 541f941e58..6ff40baab7 100644 --- a/shell/Makefile.am +++ b/shell/Makefile.am @@ -114,12 +114,12 @@ evolution_CPPFLAGS = \ -DEVOLUTION_ICONDIR=\""$(icondir)"\" \ -DEVOLUTION_MODULEDIR=\""$(moduledir)"\" \ -DEVOLUTION_RULEDIR=\""$(privdatadir)"\" \ + -DEVOLUTION_TOOLSDIR=\""$(privlibexecdir)"\" \ -DEVOLUTION_UIDIR=\""$(uidir)"\" \ -DPREFIX=\""$(prefix)"\" \ -DSYSCONFDIR=\""$(sysconfdir)"\" \ -DDATADIR=\""$(datadir)"\" \ -DLIBDIR=\""$(datadir)"\" \ - -DG_LOG_DOMAIN=\"evolution-shell\" \ $(TZDIALOG_CFLAGS) \ $(SHELL_CFLAGS) @@ -142,6 +142,22 @@ if OS_WIN32 evolution_LDFLAGS = -mwindows endif +# Killev utility + +if OS_WIN32 +else +privlibexec_PROGRAMS = killev +endif + +killev_CPPFLAGS = \ + $(AM_CPPFLAGS) \ + -DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \ + $(GNOME_PLATFORM_CFLAGS) + +killev_SOURCES = killev.c + +killev_LDADD = $(GNOME_PLATFORM_LIBS) + # Misc stuff error_DATA = shell.error -- cgit