Activate Wayland notifications in bluetooth_notification_client
[platform/core/appfw/notification-service.git] / Makefile.am
index c0b4bbc..e54f3de 100644 (file)
@@ -1,8 +1,12 @@
-bin_PROGRAMS = notification-service
+bin_PROGRAMS = notification-service sample-display-client send-notification bluetooth_notification_client
 
 AM_CFLAGS = $(GCC_CFLAGS)
 AM_CPPFLAGS = $(GCC_CFLAGS)
 
+if HAVE_WAYLAND
+AM_CPPFLAGS += -DHAVE_WAYLAND
+endif
+
 notification_service_SOURCES = \
     main.c \
     notification_service.c \
@@ -10,13 +14,21 @@ notification_service_SOURCES = \
 notification_service_CFLAGS = -I. $(TIZEN_CFLAGS)
 notification_service_LDADD = $(TIZEN_LIBS)
 
+send_notification_SOURCES = send_notification.c
+send_notification_CFLAGS = -I. $(TIZEN_CFLAGS)
+send_notification_LDADD = $(TIZEN_LIBS)
+
+sample_display_client_SOURCES = sample_display_client.c
+sample_display_client_CFLAGS = -I. $(TIZEN_CFLAGS)
+sample_display_client_LDADD = $(TIZEN_LIBS)
+
+bluetooth_notification_client_SOURCES = bluetooth_notification_client.c
+bluetooth_notification_client_CFLAGS = -I. $(TIZEN_CFLAGS)
+bluetooth_notification_client_LDADD = $(TIZEN_LIBS)
+
 SCRIPT_IN_FILES = \
-     notifications.service.in \
-     notifications.socket.in
+     notifications.service.in
 
 install-data-hook:
-       $(mkinstalldirs) $(DESTDIR)/usr/lib/systemd/system/sockets.target.wants
+       $(mkinstalldirs) $(DESTDIR)/usr/lib/systemd/system/
        install -m 0644 notifications.service $(DESTDIR)/usr/lib/systemd/system/notifications.service
-       install -m 0644 notifications.socket $(DESTDIR)/usr/lib/systemd/system/notifications.socket
-       ln -fs ../notifications.socket $(DESTDIR)/usr/lib/systemd/system/sockets.target.wants/notifications.socket
-