~ubuntu-branches/debian/sid/hal/sid

« back to all changes in this revision

Viewing changes to hald/linux/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2007-10-23 12:33:58 UTC
  • Revision ID: james.westby@ubuntu.com-20071023123358-xaf8mjc5n84d5gtz
Tags: upstream-0.5.10
ImportĀ upstreamĀ versionĀ 0.5.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
SUBDIRS = probing addons .
3
3
 
4
 
INCLUDES = \
 
4
AM_CPPFLAGS = \
5
5
        -DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
6
6
        -DPACKAGE_DATA_DIR=\""$(datadir)"\" \
7
7
        -DPACKAGE_BIN_DIR=\""$(bindir)"\" \
8
8
        -DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
9
9
        -DPACKAGE_LOCALSTATEDIR=\""$(localstatedir)"\" \
10
10
        -I$(top_srcdir) -I.. \
11
 
        @GLIB_CFLAGS@ @DBUS_CFLAGS@
 
11
        @GLIB_CFLAGS@ @DBUS_CFLAGS@ @POLKIT_CFLAGS@
12
12
 
13
13
if HALD_COMPILE_LINUX
14
14
noinst_LTLIBRARIES = libhald_linux.la
15
15
endif
16
16
 
17
 
libhald_linux_la_SOURCES =                                      \
18
 
        acpi.h                                                  \
19
 
        apm.h                                                   \
20
 
        pmu.h                                                   \
21
 
        osspec.c                                                \
22
 
        osspec_linux.h                                          \
23
 
        hotplug.h                                               \
24
 
        hotplug.c                                               \
25
 
        hotplug_helper.h                                        \
26
 
        coldplug.h                                              \
27
 
        coldplug.c                                              \
28
 
        device.h                                                \
29
 
        device.c                                                \
30
 
        blockdev.h                                              \
31
 
        blockdev.c                                              \
32
 
        inotify_local.h
 
17
libhald_linux_la_SOURCES =                              \
 
18
        acpi.h                                          \
 
19
        apm.h                                           \
 
20
        pmu.h                                           \
 
21
                                osspec.c                \
 
22
        osspec_linux.h                                  \
 
23
        hotplug.h               hotplug.c               \
 
24
        hotplug_helper.h                                \
 
25
        coldplug.h              coldplug.c              \
 
26
        device.h                device.c                \
 
27
        blockdev.h              blockdev.c              \
 
28
        inotify_local.h                                 \
 
29
                                hal-file-monitor.c
33
30
 
34
31
if HAVE_ACPI
35
 
libhald_linux_la_SOURCES +=                                     \
 
32
libhald_linux_la_SOURCES +=                             \
36
33
        acpi.c
37
34
endif
38
35
 
39
36
if HAVE_APM
40
 
libhald_linux_la_SOURCES +=                                     \
 
37
libhald_linux_la_SOURCES +=                             \
41
38
        apm.c
42
39
endif
43
40
 
44
41
if HAVE_PMU
45
 
libhald_linux_la_SOURCES +=                                     \
 
42
libhald_linux_la_SOURCES +=                             \
46
43
        pmu.c
47
44
endif