summaryrefslogtreecommitdiff
path: root/rules
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-01-23 00:42:08 +0000
committerIan Lynagh <igloo@earth.li>2011-01-23 00:42:08 +0000
commit79f1a031b132cedc98d587b69f5c428ef804a8c1 (patch)
treec1883e559e53e9813c34bdedccf153bfbed2cf63 /rules
parent032dd778604f80378823af026a99850141ad6cd3 (diff)
downloadhaskell-79f1a031b132cedc98d587b69f5c428ef804a8c1.tar.gz
Add some missing dependencies
Diffstat (limited to 'rules')
-rw-r--r--rules/build-dependencies.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/rules/build-dependencies.mk b/rules/build-dependencies.mk
index 6d194165fe..fa4e2d2d8d 100644
--- a/rules/build-dependencies.mk
+++ b/rules/build-dependencies.mk
@@ -26,6 +26,10 @@ $1_$2_MKDEPENDHS_FLAGS += -include-pkg-deps
ifneq "$$($1_$2_NO_BUILD_DEPS)" "YES"
+# Some of the Haskell files (e.g. utils/hsc2hs/Main.hs) (directly or
+# indirectly) include the generated includes files.
+$$($1_$2_depfile_haskell) : $$(includes_H_CONFIG) $$(includes_H_PLATFORM)
+
$$($1_$2_depfile_haskell) : $$($1_$2_HS_SRCS) $$($1_$2_HS_BOOT_SRCS) $$($1_$2_HC_MK_DEPEND_DEP) | $$$$(dir $$$$@)/.
"$$(RM)" $$(RM_OPTS) $$@.tmp
touch $$@.tmp
@@ -45,7 +49,8 @@ endif
# like bad rules, due to the two colons, so we filter them out.
grep -v ' : [a-zA-Z]:/' $$@.tmp > $$@
-# Some of the C files depend on the generated includes files.
+# Some of the C files (directly or indirectly) include the generated
+# includes files.
$$($1_$2_depfile_c_asm) : $$(includes_H_CONFIG) $$(includes_H_PLATFORM)
$$($1_$2_depfile_c_asm) : $$($1_$2_C_FILES_DEPS) $$($1_$2_S_FILES) | $$$$(dir $$$$@)/.