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

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Julian Andres Klode
  • Date: 2019-04-29 19:38:51 UTC
  • Revision ID: juliank@ubuntu.com-20190429193851-501astod6vchq39j
Tags: 3.192.20
releasing package update-notifier version 3.192.20

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\
 
26
                           livepatch-tray.c\
 
27
                           livepatch-tray.h\
 
28
                           livepatch-utils.c\
 
29
                           livepatch-utils.h\
27
30
                           update.c\
28
31
                           update.h\
29
32
                           release.c\
30
33
                           release.h\
31
34
                           uevent.c\
32
35
                           uevent.h\
33
 
                           gdu.c\
34
 
                           gdu.h
35
 
 
36
 
update_notifier_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)
 
36
                           trayappletui.h\
 
37
                           trayappletui.c
 
38
 
 
39
distro_cd_updater_SOURCES = cdroms.c\
 
40
                             cdroms.h
 
41
 
 
42
local_avahi_notification_SOURCES = avahi.c\
 
43
                                    avahi.h
 
44
 
 
45
system_crash_notification_SOURCES = system-crash.c\
 
46
                                     system-crash.h
 
47
 
 
48
livepatch_notification_SOURCES = livepatch.c\
 
49
                                 livepatch-utils.c\
 
50
                                 livepatch-utils.h
 
51
 
 
52
update_notifier_LDADD = $(PACKAGE_LIBS) $(INTLLIBS) $(APP_INDICATOR_LIBS)
37
53
update_notifier_LDFLAGS = -export-dynamic
 
54
 
 
55
distro_cd_updater_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)
 
56
 
 
57
local_avahi_notification_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)
 
58
 
 
59
system_crash_notification_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)
 
60
 
 
61
livepatch_notification_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)