Remove notification-display-service
[platform/core/appfw/notification-service.git] / Makefile.am
1 SUBDIRS = plugins
2 moduledir = $(libdir)/notification-service/plugins
3
4 bin_PROGRAMS = notification-service sample-display-client send-notification bluetooth_notification_client
5
6 AM_CFLAGS = $(GCC_CFLAGS)
7 AM_CPPFLAGS = $(GCC_CFLAGS) -DPLUGINSDIR='"$(moduledir)"'
8
9 notification_service_SOURCES = \
10     main.c \
11     notification_service.c \
12     service_common.c
13 notification_service_CFLAGS = -I. $(TIZEN_CFLAGS)
14 notification_service_LDADD = $(TIZEN_LIBS)
15
16 send_notification_SOURCES = send_notification.c
17 send_notification_CFLAGS = -I. $(TIZEN_CFLAGS)
18 send_notification_LDADD = $(TIZEN_LIBS)
19
20 sample_display_client_SOURCES = sample_display_client.c
21 sample_display_client_CFLAGS = -I. $(TIZEN_CFLAGS)
22 sample_display_client_LDADD = $(TIZEN_LIBS)
23
24 bluetooth_notification_client_SOURCES = bluetooth_notification_client.c
25 bluetooth_notification_client_CFLAGS = -I. $(TIZEN_CFLAGS)
26 bluetooth_notification_client_LDADD = $(TIZEN_LIBS)
27
28 SCRIPT_IN_FILES = \
29      notifications.service.in
30
31 install-data-hook:
32         $(mkinstalldirs) $(DESTDIR)/usr/lib/systemd/system/
33         install -m 0644 notifications.service $(DESTDIR)/usr/lib/systemd/system/notifications.service