diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2014-08-01 12:32:31 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2014-08-05 10:31:28 +0800 |
commit | d1f814a1e310b5c1e6b32d5bdbf7b7450c221325 (patch) | |
tree | 43d51d4fcec08c5819fb7ab7b1ca1e9cff8fab3f /discover/grub2 | |
parent | d1c07faf5b5979c19c4709f7195c612fb0a9dd2e (diff) | |
download | talos-petitboot-d1f814a1e310b5c1e6b32d5bdbf7b7450c221325.tar.gz talos-petitboot-d1f814a1e310b5c1e6b32d5bdbf7b7450c221325.zip |
automake: silence make output
Currently, we get a lot of noise out of the build process; automake
supports V={0,1}, which we can use to suppress the output a little.
This needs a few cleanups for custom commands.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'discover/grub2')
-rw-r--r-- | discover/grub2/Makefile.am | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/discover/grub2/Makefile.am b/discover/grub2/Makefile.am index dda6835..0bff9fa 100644 --- a/discover/grub2/Makefile.am +++ b/discover/grub2/Makefile.am @@ -14,10 +14,6 @@ noinst_PROGRAMS += discover/grub2/grub2-parser.ro -discover/grub2/grub2-parser.ro$(EXEEXT): \ - $(discover_grub2_grub2_parser_ro_OBJECTS) - $(LD) -r -o $@ $^ - discover_grub2_grub2_parser_ro_SOURCES = \ discover/grub2/builtins.c \ discover/grub2/env.c \ @@ -39,12 +35,13 @@ CLEANFILES += \ discover/grub2/lexer.c \ discover/grub2/lexer.h - discover_grub2_grub2_parser_ro_CPPFLAGS = \ $(AM_CPPFLAGS) \ -I$(top_srcdir)/discover/grub2 \ -I$(top_builddir)/discover/grub2 +discover_grub2_grub2_parser_ro_LINK = \ + $(LD) -r -o $@ # ylwrap doesn't handle flex header files well; use our own rule here. discover/grub2/lexer.h discover/grub2/lexer.c: \ |