aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-09-14 22:05:58 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-09-18 20:48:34 -0400
commit836ec5cd0066188e191c892b87cb473221a0b570 (patch)
tree7fcbe30170a5b0262c1ce20c828758fefc529af2
parentb4f4d331e0011c69d40e285ef710cca09c093159 (diff)
downloadseabios-836ec5cd0066188e191c892b87cb473221a0b570.tar.gz
build: Fix import of gcc dependency files.
Make sure dependency file import works with new hw/ and fw/ sub-directories. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 83820fe..70ba8d9 100644
--- a/Makefile
+++ b/Makefile
@@ -253,4 +253,4 @@ distclean: clean
$(OUT) $(addprefix $(OUT), $(DIRS)):
$(Q)mkdir $@
--include $(OUT)*.d
+-include $(patsubst %,$(OUT)%/*.d,$(DIRS))