blob: cff25dd8e23a3bac3c0aca78772652db198eaf18 (
plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
## Process this file with automake to produce Makefile.in
SUBDIRS = device-manager
if HALD_COMPILE_LINUX2
SUBDIRS += linux
endif
if HALD_COMPILE_FREEBSD
SUBDIRS += freebsd
endif
DIST_SUBDIRS = device-manager freebsd linux
INCLUDES = \
-DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \
-DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
-DPACKAGE_BIN_DIR=\""$(bindir)"\" \
-DPACKAGE_LOCALSTATEDIR=\""$(localstatedir)"\" \
-DPACKAGE_SCRIPT_DIR=\""$(datadir)/hal/scripts"\" \
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
-I$(top_srcdir) -I$(top_srcdir)/libhal \
@PACKAGE_CFLAGS@
bin_PROGRAMS = \
lshal \
hal-get-property \
hal-set-property \
hal-find-by-capability \
hal-find-by-property \
hal-device
lshal_SOURCES = lshal.c
lshal_LDADD = @PACKAGE_LIBS@ $(top_builddir)/libhal/libhal.la
hal_get_property_SOURCES = hal_get_property.c
hal_get_property_LDADD = @DBUS_LIBS@ $(top_builddir)/libhal/libhal.la
hal_set_property_SOURCES = hal_set_property.c
hal_set_property_LDADD = @DBUS_LIBS@ $(top_builddir)/libhal/libhal.la
hal_find_by_capability_SOURCES = hal_find_by_capability.c
hal_find_by_capability_LDADD = @DBUS_LIBS@ $(top_builddir)/libhal/libhal.la
hal_find_by_property_SOURCES = hal_find_by_property.c
hal_find_by_property_LDADD = @DBUS_LIBS@ $(top_builddir)/libhal/libhal.la
hal_device_SOURCES = hal-device.c
hal_device_LDADD = @DBUS_LIBS@ $(top_builddir)/libhal/libhal.la
libexec_PROGRAMS = \
hal-storage-mount \
hal-system-power-pmu
hal_storage_mount_SOURCES = hal-storage-mount.c
hal_storage_mount_LDADD = @GLIB_LIBS@ @POLKIT_LIBS@ @DBUS_LIBS@ $(top_builddir)/libhal/libhal.la $(top_builddir)/libhal-storage/libhal-storage.la
hal_system_power_pmu_SOURCES = hal-system-power-pmu.c
hal_system_power_pmu_LDADD = @DBUS_LIBS@ $(top_builddir)/libhal/libhal.la
scriptdir = $(libdir)/hal/scripts
script_SCRIPTS = \
hal-luks-setup \
hal-luks-teardown \
hal-luks-remove \
hal-system-power-suspend \
hal-system-power-hibernate \
hal-system-power-shutdown \
hal-system-power-reboot \
hal-system-lcd-get-brightness \
hal-system-lcd-set-brightness \
hal-system-power-set-power-save \
hal-system-storage-unmount \
hal-system-storage-eject \
hal-system-storage-cleanup-mountpoint \
hal-system-storage-cleanup-mountpoints
EXTRA_DIST=$(man_MANS) $(MAN_IN_FILES) gen-libgphoto-hal-fdi $(script_SCRIPTS)
check:
for f in $(script_SCRIPTS); do \
echo -n "Validate bash syntax in $$f : "; \
bash -n $(srcdir)/$$f 2> bash.error;\
if test -s bash.error; then \
echo failed; \
cat bash.error; \
rm -f bash.error; \
exit 1; \
else \
echo ok; \
rm -f bash.error; \
fi; \
done;
clean-local :
rm -f *~
|