diff options
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 |