blob: eda87c8d77a36d4e3932488c0511685deb4f35bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
notificationslibdir = $(INDICATORDIR)
notificationslib_LTLIBRARIES = libnotifications.la
libnotifications_la_SOURCES = \
dbus-spy.c \
dbus-spy.h \
urlregex.c \
urlregex.h \
notification-menuitem.c \
notification-menuitem.h \
settings.h \
indicator-notifications.c \
notification.c \
notification.h
libnotifications_la_CFLAGS = \
$(INDICATOR_CFLAGS) \
-Wall \
-DG_LOG_DOMAIN=\"Indicator-Notifications\"
libnotifications_la_LIBADD = \
$(INDICATOR_LIBS)
libnotifications_la_LDFLAGS = \
-module \
-avoid-version
libexec_PROGRAMS = indicator-notifications-settings
indicator_notifications_settings_SOURCES = \
settings.h \
indicator-notifications-settings.c
indicator_notifications_settings_CFLAGS = \
-DLOCALE_DIR=\""$(localedir)"\" \
$(SETTINGS_CFLAGS) \
-Wall
indicator_notifications_settings_LDADD = \
$(SETTINGS_LIBS)
|