diff options
author | Kay Sievers <kay@vrfy.org> | 2013-02-08 17:24:43 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-02-11 19:35:52 +0100 |
commit | 7b4d7cc08283e5485dcfa49ffdf1915de1d5e81b (patch) | |
tree | fc73d48c2f124bf27a3c47979a3e28f825eb8902 /Makefile.am | |
parent | c937e0d5c579863677e0fcb5508517f7714c332d (diff) |
bootctl: add boot loader and firmware interface tool
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 9da3394c78..2cec04a140 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3069,7 +3069,6 @@ timedatectl_LDADD = \ bin_PROGRAMS += \ timedatectl - endif polkitpolicy_in_files += \ @@ -3079,6 +3078,21 @@ EXTRA_DIST += \ units/systemd-timedated.service.in # ------------------------------------------------------------------------------ +bootctl_SOURCES = \ + src/boot/boot.h \ + src/boot/boot-loader.h \ + src/boot/bootctl.c \ + src/boot/boot-loader.c \ + src/boot/boot-efi.c + +bootctl_LDADD = \ + libsystemd-shared.la \ + libsystemd-id128.la + +bin_PROGRAMS += \ + bootctl + +# ------------------------------------------------------------------------------ if HAVE_MYHOSTNAME libnss_myhostname_la_SOURCES = \ src/nss-myhostname/nss-myhostname.c \ |