Run the notifications display deamon with a systemd service.
[platform/core/appfw/notification-service.git] / Makefile.am
index e54f3de..2442cba 100644 (file)
@@ -1,4 +1,4 @@
-bin_PROGRAMS = notification-service sample-display-client send-notification bluetooth_notification_client
+bin_PROGRAMS = notification-service notification-display-service sample-display-client send-notification bluetooth_notification_client
 
 AM_CFLAGS = $(GCC_CFLAGS)
 AM_CPPFLAGS = $(GCC_CFLAGS)
@@ -14,6 +14,10 @@ notification_service_SOURCES = \
 notification_service_CFLAGS = -I. $(TIZEN_CFLAGS)
 notification_service_LDADD = $(TIZEN_LIBS)
 
+notification_display_service_SOURCES = notification_display_service.c
+notification_display_service_CFLAGS = -I. $(TIZEN_CFLAGS)
+notification_display_service_LDADD = $(TIZEN_LIBS)
+
 send_notification_SOURCES = send_notification.c
 send_notification_CFLAGS = -I. $(TIZEN_CFLAGS)
 send_notification_LDADD = $(TIZEN_LIBS)
@@ -27,8 +31,10 @@ bluetooth_notification_client_CFLAGS = -I. $(TIZEN_CFLAGS)
 bluetooth_notification_client_LDADD = $(TIZEN_LIBS)
 
 SCRIPT_IN_FILES = \
-     notifications.service.in
+     notifications.service.in \
+     notifications_display.service.in
 
 install-data-hook:
        $(mkinstalldirs) $(DESTDIR)/usr/lib/systemd/system/
        install -m 0644 notifications.service $(DESTDIR)/usr/lib/systemd/system/notifications.service
+       install -m 0644 notifications_display.service $(DESTDIR)/usr/lib/systemd/system/notifications_display.service