blob: 7f97c7d8c312fb770c485a16c89748feb0e1851c (
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
|
## Process this file with automake to produce Makefile.in
udevrulesdir = $(udev_prefix)/udev/rules.d
udevrules_DATA = 90-hal.rules
AM_CPPFLAGS = \
-DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \
-DPACKAGE_SYSCONF_DIR=\""$(sysconfdir)"\" \
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \
-DPACKAGE_BIN_DIR=\""$(bindir)"\" \
-DPACKAGE_LOCALSTATEDIR=\""$(localstatedir)"\" \
-DPACKAGE_SCRIPT_DIR=\""$(libexecdir)/scripts"\" \
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
-I$(top_srcdir) -I$(top_srcdir)/libhal -I$(top_srcdir)/libhal-storage \
@DBUS_CFLAGS@ @GLIB_CFLAGS@ @POLKIT_CFLAGS@
libexec_PROGRAMS =
scriptdir = $(libexecdir)/scripts/linux
script_SCRIPTS = \
hal-luks-setup-linux \
hal-luks-teardown-linux \
hal-luks-remove-linux \
hal-system-power-suspend-linux \
hal-system-power-suspend-hybrid-linux \
hal-system-power-hibernate-linux \
hal-system-power-shutdown-linux \
hal-system-power-reboot-linux \
hal-system-lcd-get-brightness-linux \
hal-system-lcd-set-brightness-linux \
hal-system-power-set-power-save-linux \
hal-system-killswitch-get-power-linux \
hal-system-killswitch-set-power-linux \
hal-dockstation-undock-linux \
hal-system-wol-linux
EXTRA_DIST = 90-hal.rules $(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 *~
install-data-hook:
ln -sf hal-system-wol-linux $(DESTDIR)$(scriptdir)/hal-system-wol-enable-linux
ln -sf hal-system-wol-linux $(DESTDIR)$(scriptdir)/hal-system-wol-enabled-linux
ln -sf hal-system-wol-linux $(DESTDIR)$(scriptdir)/hal-system-wol-supported-linux
uninstall-hook:
rm -f $(DESTDIR)$(scriptdir)/hal-system-wol-*
|