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

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Balint Reczey
  • Date: 2020-06-11 18:46:02 UTC
  • Revision ID: balint.reczey@canonical.com-20200611184602-2rv1zan3xu723x2u
Moved to git at https://git.launchpad.net/update-notifier

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in
2
 
 
3
 
INCLUDES = \
4
 
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
5
 
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
6
 
        -DPACKAGE_LIB_DIR=\""$(libdir)"\" \
7
 
        -DUIDIR=\""$(datadir)/update-notifier/ui/"\" \
8
 
        $(PACKAGE_CFLAGS) $(APP_INDICATOR_CFLAGS)
9
 
 
10
 
bin_PROGRAMS = update-notifier \
11
 
                distro-cd-updater \
12
 
                local-avahi-notification \
13
 
                system-crash-notification \
14
 
                livepatch-notification
15
 
 
16
 
 
17
 
 
18
 
update_notifier_SOURCES = update-notifier.c \
19
 
                           update-notifier.h \
20
 
                           rfc822.h\
21
 
                           rfc822.c\
22
 
                           hooks.h\
23
 
                           hooks.c\
24
 
                           crash.c\
25
 
                           crash.h\
26
 
                           livepatch-tray.c\
27
 
                           livepatch-tray.h\
28
 
                           livepatch-utils.c\
29
 
                           livepatch-utils.h\
30
 
                           update.c\
31
 
                           update.h\
32
 
                           release.c\
33
 
                           release.h\
34
 
                           uevent.c\
35
 
                           uevent.h\
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)
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)