From: Stefan Weil Date: Thu, 21 Jun 2012 20:18:39 +0000 (+0200) Subject: make: Fix dependencies for fpu/*.c and tcg/*.c X-Git-Tag: v1.2.0-rc0~247 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a483bdae10840e69457b55dc01df5eef8fc5c6b0;p=thirdparty%2Fqemu.git make: Fix dependencies for fpu/*.c and tcg/*.c Commit dcff25f2cd8c11a9368cc2369aeb0319c32d9e26 removed too many *.d files. The directories fpu/ and tcg/ still don't use the recursive subdir rules. Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- diff --git a/Makefile.target b/Makefile.target index 550d8897a3b..8f12b0fe884 100644 --- a/Makefile.target +++ b/Makefile.target @@ -216,4 +216,4 @@ GENERATED_HEADERS += config-target.h Makefile: $(GENERATED_HEADERS) # Include automatically generated dependency files --include $(wildcard *.d) +-include $(wildcard *.d fpu/*.d tcg/*.d)