micro-opt: replace stmGetEnclosingTRec() with a field access
[ghc-hetmet.git] / rules / hs-suffix-rules-srcdir.mk
1 # -----------------------------------------------------------------------------
2 #
3 # (c) 2009 The University of Glasgow
4 #
5 # This file is part of the GHC build system.
6 #
7 # To understand how the build system works and how to modify it, see
8 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 #      http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
10 #
11 # -----------------------------------------------------------------------------
12
13
14 define hs-suffix-rules-srcdir
15 # args: $1 = dir,  $2 = distdir, $3 = way, $4 = srcdir
16
17 # Preprocessing Haskell source
18
19 ifneq "$$(BootingFromHc)" "YES"
20
21 $1/$2/build/%.hs : $1/$4/%.ly | $$$$(dir $$$$@)/.
22         "$$(HAPPY)" $$($1_$2_$3_ALL_HAPPY_OPTS) $$< -o $$@
23
24 $1/$2/build/%.hs : $1/$4/%.y | $$$$(dir $$$$@)/.
25         "$$(HAPPY)" $$($1_$2_$3_ALL_HAPPY_OPTS) $$< -o $$@
26
27 $1/$2/build/%.hs : $1/$4/%.x | $$$$(dir $$$$@)/.
28         "$$(ALEX)" $$($1_$2_$3_ALL_ALEX_OPTS) $$< -o $$@
29
30 $1/$2/build/%_hsc.c $1/$2/build/%_hsc.h $1/$2/build/%.hs : $1/$4/%.hsc $$(HSC2HS_INPLACE) | $$$$(dir $$$$@)/.
31         "$$(HSC2HS_INPLACE)" $$($1_$2_$3_ALL_HSC2HS_OPTS) $$< -o $$@
32
33 # Compiling Haskell source
34
35 $1/$2/build/%.$$($3_osuf) : $1/$4/%.hs $$($1_$2_HC_DEP)
36         "$$($1_$2_HC)" $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
37
38 $1/$2/build/%.$$($3_osuf) : $1/$4/%.lhs $$($1_$2_HC_DEP)
39         "$$($1_$2_HC)" $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
40
41 $1/$2/build/%.$$($3_hcsuf) : $1/$4/%.hs $$($1_$2_HC_DEP)
42         "$$($1_$2_HC)" $$($1_$2_$3_ALL_HC_OPTS) -C $$< -o $$@
43
44 $1/$2/build/%.$$($3_hcsuf) : $1/$4/%.lhs $$($1_$2_HC_DEP)
45         "$$($1_$2_HC)" $$($1_$2_$3_ALL_HC_OPTS) -C $$< -o $$@
46
47 endif
48
49 # XXX: for some reason these get used in preference to the direct
50 # .hs->.o rule, I don't know why --SDM
51
52 $1/$2/build/%.$$($3_osuf) : $1/$4/%.hc includes/ghcautoconf.h includes/ghcplatform.h | $$$$(dir $$$$@)/.
53         "$$(CC)" $$($1_$2_$3_ALL_CC_OPTS) -Iincludes -x c -c $$< -o $$@
54
55 $1/$2/build/%.$$($3_osuf) : $1/$2/build/%.hc includes/ghcautoconf.h includes/ghcplatform.h
56         "$$(CC)" $$($1_$2_$3_ALL_CC_OPTS) -Iincludes -x c -c $$< -o $$@
57
58 # $1/$2/build/%.$$($3_osuf) : $1/$2/build/%.$$($3_way_)hc
59 #       "$$($1_$2_HC)" $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
60 #
61 # $1/$2/build/%.$$($3_osuf) : $1/$2/build/%.hc
62 #       "$$($1_$2_HC)" $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
63 #
64 # $1/$2/build/%.$$($3_way_)s : $1/$2/build/%.$$($3_way_)hc
65 #       "$$($1_$2_HC)" $$($1_$2_$3_ALL_HC_OPTS) -S $$< -o $$@
66
67 # Now the rules for hs-boot files.
68
69 $1/$2/build/%.hs-boot : $1/$4/%.hs-boot
70         "$$(CP)" $$< $$@
71
72 $1/$2/build/%.lhs-boot : $1/$4/%.lhs-boot
73         "$$(CP)" $$< $$@
74
75 $1/$2/build/%.$$($3_way_)o-boot : $1/$4/%.hs-boot $$($1_$2_HC_DEP)
76         "$$($1_$2_HC)" $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
77
78 $1/$2/build/%.$$($3_way_)o-boot : $1/$4/%.lhs-boot $$($1_$2_HC_DEP)
79         "$$($1_$2_HC)" $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
80
81 ifneq "$$(BootingFromHc)" "YES"
82 # stubs are automatically generated and compiled by GHC
83
84 $1/$2/build/%_stub.$$($3_osuf): $1/$2/build/%.$$($3_osuf)
85         @:
86 endif
87
88 endef
89