diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-07-08 17:09:49 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-07-09 08:47:41 +0200 |
commit | 5d866213f42fd22aed80abb5a91d74f6d485ac3f (patch) | |
tree | 364e2d0329034224f8c0179fb3b4f9b30634c43d | |
parent | f53dbfaa8c20cd789afc7e54ff004d068095223c (diff) | |
download | coreboot-5d866213f42fd22aed80abb5a91d74f6d485ac3f.tar.xz |
libpayload: Have make install save .xcompile file
Useful information, record it in the destination directory,
together with .config.
Change-Id: Icf3282f61f502b37f9f06d7d5a0a630f49c96ed2
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: http://review.coreboot.org/10864
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
-rw-r--r-- | payloads/libpayload/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/payloads/libpayload/Makefile.inc b/payloads/libpayload/Makefile.inc index b84e322941..873673c01d 100644 --- a/payloads/libpayload/Makefile.inc +++ b/payloads/libpayload/Makefile.inc @@ -118,6 +118,7 @@ install: real-target install -m 755 bin/lpas $(DESTDIR)/libpayload/bin install -m 644 bin/lp.functions $(DESTDIR)/libpayload/bin install -m 644 $(DOTCONFIG) $(DESTDIR)/libpayload/libpayload.config + install -m 755 .xcompile $(DESTDIR)/libpayload/libpayload.xcompile clean-for-update-target: rm -f $(addsuffix .a,$(addprefix $(obj)/,$(libraries))) $(obj)/libpayload.a |