diff options
author | Cai Bai Yin <caibaiyin.pku@gmail.com> | 2010-07-29 00:08:21 +0000 |
---|---|---|
committer | Marc Jones <marc.jones@amd.com> | 2010-07-29 00:08:21 +0000 |
commit | 9b3cf8ef0812fd21f438640543c7aa9d138ed69c (patch) | |
tree | 2fdd272e6ae8c526b5bd43cccb16954da6f37b1c /payloads | |
parent | bba0d76952754da0c38cf94cf4a6860cff3ce9ba (diff) | |
download | coreboot-9b3cf8ef0812fd21f438640543c7aa9d138ed69c.tar.xz |
Resolved the bug of filo+libpayload building. The bug is if libpayload is installed before filo load "make -C ../libpayload/Makefile DEST=**", it would not
install correctly. Also, distclean removes .xcompile now.
Signed-off-by: Cai Bai Yin <caibaiyin.pku@gmail.com>
Acked-by: Peter Stuge <peter@stuge.se>
Acked-by: Marc Jones <marcj303@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5672 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/libpayload/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/libpayload/Makefile b/payloads/libpayload/Makefile index bb00613921..4363590a14 100644 --- a/payloads/libpayload/Makefile +++ b/payloads/libpayload/Makefile @@ -163,7 +163,7 @@ clean: doxygen-clean distclean: clean $(Q)rm -rf build # should be $(obj) ? - $(Q)rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig* + $(Q)rm -f .config .config.old .xcompile ..config.tmp .kconfig.d .tmpconfig* # This include must come _before_ the pattern rules below! # Order _does_ matter for pattern rules. @@ -182,5 +182,5 @@ $(obj)/%.S.o: $(src)/%.S endif -.PHONY: $(PHONY) prepare clean distclean doxygen doxy +.PHONY: $(PHONY) prepare install clean distclean doxygen doxy |