summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2015-01-31 01:14:39 -0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-02-03 05:39:23 +0000
commit04d98e399d034656770e0049613d09ef3ea6d2d0 (patch)
tree764bf7ec81760fc5e051172c809c05ec403c0727
parent7ccd9ce48e761b7614d29ff95ef97d0a7dc1d599 (diff)
downloadvboot-04d98e399d034656770e0049613d09ef3ea6d2d0.tar.gz
Restore lost dependencies
Oops. Somehow the Makefile stopped including the generated dependencies. As long as we're building from scratch this didn't matter, but rebuilding following local changes wouldn't always work. Let's fix it. BUG=none BRANCH=none TEST=make runtests Change-Id: I80bd30d1847734a288cddf61f28bb33ae9906525 Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/245501 Reviewed-by: Randall Spangler <rspangler@chromium.org>
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ddae9556..2488203d 100644
--- a/Makefile
+++ b/Makefile
@@ -1375,6 +1375,8 @@ endif
# Include generated dependencies
ALL_DEPS += ${ALL_OBJS:%.o=%.o.d}
TEST_DEPS += ${TEST_OBJS:%.o=%.o.d}
+-include ${ALL_DEPS}
+-include ${TEST_DEPS}
# We want to use only relative paths in cscope.files, especially since the
# paths inside and outside the chroot are different.