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

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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
## Process this file with automake to produce Makefile.in

INCLUDES = \
	-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
	-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
	-DPACKAGE_LIB_DIR=\""$(libdir)"\" \
	-DUIDIR=\""$(datadir)/update-notifier/ui/"\" \
	$(PACKAGE_CFLAGS) $(APP_INDICATOR_CFLAGS)

bin_PROGRAMS = update-notifier \
		distro-cd-updater \
                local-avahi-notification \
                system-crash-notification \
                livepatch-notification



update_notifier_SOURCES = update-notifier.c \
                           update-notifier.h \
			   rfc822.h\
			   rfc822.c\
			   hooks.h\
			   hooks.c\
			   crash.c\
			   crash.h\
			   livepatch-tray.c\
			   livepatch-tray.h\
			   livepatch-utils.c\
			   livepatch-utils.h\
			   update.c\
			   update.h\
			   release.c\
			   release.h\
			   uevent.c\
			   uevent.h\
			   trayappletui.h\
			   trayappletui.c

distro_cd_updater_SOURCES = cdroms.c\
		             cdroms.h

local_avahi_notification_SOURCES = avahi.c\
                                    avahi.h

system_crash_notification_SOURCES = system-crash.c\
			             system-crash.h

livepatch_notification_SOURCES = livepatch.c\
				 livepatch-utils.c\
				 livepatch-utils.h

update_notifier_LDADD = $(PACKAGE_LIBS) $(INTLLIBS) $(APP_INDICATOR_LIBS)
update_notifier_LDFLAGS = -export-dynamic

distro_cd_updater_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)

local_avahi_notification_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)

system_crash_notification_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)

livepatch_notification_LDADD = $(PACKAGE_LIBS) $(INTLLIBS)