Author: mjones Date: Thu Jul 29 02:08:21 2010 New Revision: 5672 URL: https://tracker.coreboot.org/trac/coreboot/changeset/5672
Log: 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 <[email protected]> Acked-by: Peter Stuge <[email protected]> Acked-by: Marc Jones <[email protected]> Modified: trunk/payloads/libpayload/Makefile Modified: trunk/payloads/libpayload/Makefile ============================================================================== --- trunk/payloads/libpayload/Makefile Wed Jul 28 02:27:09 2010 (r5671) +++ trunk/payloads/libpayload/Makefile Thu Jul 29 02:08:21 2010 (r5672) @@ -163,7 +163,7 @@ 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 @@ endif -.PHONY: $(PHONY) prepare clean distclean doxygen doxy +.PHONY: $(PHONY) prepare install clean distclean doxygen doxy -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

