diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-11-08 00:43:33 -0500 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-11-10 22:38:44 +0100 |
commit | 06cdd2484c5d0b7792168a7c2d99311e35b0fb8e (patch) | |
tree | 087b97093350d3e24d10144e82f69f41569733b9 /Makefile.am | |
parent | e9ddabc246ced239cbce436e16792dc4c3d1b52d (diff) |
ac-power: make ac-power a proper binary that scripts can call
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 52bd13fedb..69faa5581a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -116,7 +116,8 @@ rootlibexec_PROGRAMS = \ systemd-quotacheck \ systemd-cryptsetup \ systemd-cryptsetup-generator \ - systemd-timestamp + systemd-timestamp \ + systemd-ac-power noinst_PROGRAMS = \ test-engine \ @@ -724,6 +725,17 @@ systemd_timestamp_CFLAGS = \ systemd_timestamp_LDADD = \ libsystemd-basic.la +systemd_ac_power_SOURCES = \ + src/ac-power.c + +systemd_ac_power_CFLAGS = \ + $(AM_CFLAGS) \ + $(UDEV_CFLAGS) + +systemd_ac_power_LDADD = \ + libsystemd-basic.la \ + $(UDEV_LIBS) + systemd_cryptsetup_SOURCES = \ src/cryptsetup.c |