diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-01-05 18:50:29 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-01-10 18:34:17 +0000 |
commit | 5cb088088be8573a01c991421ad882ce899067db (patch) | |
tree | 78336541081f121863be9b28a25b9b00f9c06d6a /rules/hs-suffix-rules.mk | |
parent | 8dd2f981e43211a5c47aabe8b45e572e4f50b9fd (diff) | |
download | haskell-5cb088088be8573a01c991421ad882ce899067db.tar.gz |
Make the rule for .hi files depend on the .hs/.lhs files
make thought that it could make a .hi file for the C files in
libraries, which was causing problems when using dynamic-too.
Diffstat (limited to 'rules/hs-suffix-rules.mk')
-rw-r--r-- | rules/hs-suffix-rules.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rules/hs-suffix-rules.mk b/rules/hs-suffix-rules.mk index 9d547533fe..9b11e6e806 100644 --- a/rules/hs-suffix-rules.mk +++ b/rules/hs-suffix-rules.mk @@ -28,6 +28,9 @@ $1/$2/build/%.$$($3_hcsuf) : $1/$2/build/autogen/%.hs $$(LAX_DEPS_FOLLOW) $$($1_ $1/$2/build/%.$$($3_osuf) : $1/$2/build/autogen/%.hs $$(LAX_DEPS_FOLLOW) $$($1_$2_HC_DEP) $$(call cmd,$1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@ +$(call hi-rule,$1/$2/build,$1/$2/build,$3) +$(call hi-rule,$1/$2/build/autogen,$1/$2/build,$3) + endif endif |