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

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: mvo
  • Date: 2005-02-08 00:25:09 UTC
  • Revision ID: gustavo@niemeyer.net-20050208002509-a211f90ce9367f80
* cleanups:
  - configure.in: no longer need libglade
  - src/update-notifier{c,h}: we no longer use dbus directly only libhal
  - src/update.c: added comment to update_check() 
  - README: reflect the latest developments (no direct dbus use etc)
  - data/Makefile.am: don't distribute the dbus helper script

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
bin_PROGRAMS = update-notifier
11
11
 
12
 
 
13
 
 
14
12
update_notifier_SOURCES = update-notifier.c \
15
13
                           update-notifier.h \
16
14
                           eggtrayicon.c \
20
18
                           rfc822.c\
21
19
                           hooks.h\
22
20
                           hooks.c\
23
 
                           reboot.c\
24
 
                           reboot.h\
25
21
                           update.c\
26
22
                           update.h\
27
23
                           hal.c\
28
 
                           hal.h \
29
 
                           md5.h \
30
 
                           md5.c 
 
24
                           hal.h
31
25
 
32
26
update_notifier_LDADD = @PACKAGE_LIBS@ $(INTLLIBS)
33