diff options
Diffstat (limited to 'tools/Makefile.am')
-rw-r--r-- | tools/Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 1fe0f6b..2cf66db 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -28,6 +28,7 @@ INCLUDES = \ -I. \ -I$(srcdir) \ -I$(top_srcdir)/src \ + -I$(top_builddir)/libck-connector \ $(CONSOLE_KIT_CFLAGS) \ $(DISABLE_DEPRECATED_CFLAGS) \ -DPREFIX=\""$(prefix)"\" \ @@ -44,6 +45,7 @@ INCLUDES = \ $(NULL) bin_PROGRAMS = \ + ck-launch-session \ ck-list-sessions \ ck-history \ $(NULL) @@ -54,6 +56,15 @@ sbin_PROGRAMS = \ ck-log-system-stop \ $(NULL) +ck_launch_session_SOURCES = \ + ck-launch-session.c \ + $(NULL) + +ck_launch_session_LDADD = \ + $(top_builddir)/libck-connector/libck-connector.la \ + $(CONSOLE_KIT_LIBS) \ + $(NULL) + ck_list_sessions_SOURCES = \ list-sessions.c \ $(NULL) |