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: qemu-xen-4.3.0-rc1~964 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=a483bdae10840e69457b55dc01df5eef8fc5c6b0;p=qemu-upstream-4.6-testing.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 550d8897a..8f12b0fe8 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)