diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-03-24 15:51:48 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-03-24 15:51:48 +0000 |
commit | 6bee951c302686fd3598859f9116a4bf36252673 (patch) | |
tree | a4b0218493bdd119399ade8009d8120f62e4fa8f /src/lib/Makefile.inc | |
parent | 9db39d3b43b56ba16e05e4434518092bf31e99f4 (diff) | |
download | coreboot-6bee951c302686fd3598859f9116a4bf36252673.tar.xz |
dependency tracking for coreboot
Obviously compile time increases slightly because more work has to be done, but
I'm sure the benefit of having to rm -rf build less often is worth it :-)
Other small changes:
* be a bit more verbose on some of the created files
* move -O2 from compiler rule into bootblock_romccflags
* drop rule needed for util/*.c -> build/*.o as x86emu no longer lives in util.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5280 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/lib/Makefile.inc')
-rw-r--r-- | src/lib/Makefile.inc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc index 95c10cf011..abbaf95cab 100644 --- a/src/lib/Makefile.inc +++ b/src/lib/Makefile.inc @@ -28,8 +28,4 @@ obj-$(CONFIG_COMPRESSED_PAYLOAD_LZMA) += lzma.o obj-$(CONFIG_BOOTSPLASH) += jpeg.o -ifdef POST_EVALUATION -$(obj)/lib/version.o :: $(obj)/build.h -endif - smmobj-y += memcpy.o |