~ubuntu-core-dev/update-notifier/ubuntu

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Jeremy Bicha
  • Date: 2019-02-09 14:25:07 UTC
  • Revision ID: jbicha@ubuntu.com-20190209142507-45fc0sqnn4uqdl7j
Try adding gnome-shell as alternate dependency of notification-daemon

as part of an effort to drop notification-daemon to universe

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
6
6
        -DPACKAGE_LIB_DIR=\""$(libdir)"\" \
7
7
        -DUIDIR=\""$(datadir)/update-notifier/ui/"\" \
8
 
        $(PACKAGE_CFLAGS)
 
8
        $(PACKAGE_CFLAGS) $(APP_INDICATOR_CFLAGS)
9
9
 
10
 
bin_PROGRAMS = update-notifier
 
10
bin_PROGRAMS = update-notifier \
 
11
                distro-cd-updater \
 
12
                local-avahi-notification \
 
13
                system-crash-notification \
 
14
                livepatch-notification
11
15
 
12
16
 
13
17
 
14
18
update_notifier_SOURCES = update-notifier.c \
15
19
                           update-notifier.h \
16
 
                           clipboard.c \
17
20
                           rfc822.h\
18
21
                           rfc822.c\
19
22
                           hooks.h\
20
23
                           hooks.c\
21
 
                           reboot.c\
22
 
                           reboot.h\
23
24
                           crash.c\
24
25
                           crash.h\
25
 
                           avahi.h\
26
 
                           avahi.c\
27
26
                           update.c\
28
27
                           update.h\
29
28
                           release.c\
30
29
                           release.h\
31
 
                           firmware.c\
32
 
                           firmware.h\
33
 
                           gdu.c\
34
 
                           gdu.h
35
 
 
36
 
update_notifier_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)
 
30
                           uevent.c\
 
31
                           uevent.h\
 
32
                           trayappletui.h\
 
33
                           trayappletui.c
 
34
 
 
35
distro_cd_updater_SOURCES = cdroms.c\
 
36
                             cdroms.h
 
37
 
 
38
local_avahi_notification_SOURCES = avahi.c\
 
39
                                    avahi.h
 
40
 
 
41
system_crash_notification_SOURCES = system-crash.c\
 
42
                                     system-crash.h
 
43
 
 
44
livepatch_notification_SOURCES = livepatch.c
 
45
 
 
46
update_notifier_LDADD = $(PACKAGE_LIBS) $(INTLLIBS) $(APP_INDICATOR_LIBS)
37
47
update_notifier_LDFLAGS = -export-dynamic
 
48
 
 
49
distro_cd_updater_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)
 
50
 
 
51
local_avahi_notification_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)
 
52
 
 
53
system_crash_notification_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)
 
54
 
 
55
livepatch_notification_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)