Add a .hc building rules for bootstrapping
[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 $$(MKDIRHIER)
22         $$(MKDIRHIER) $$(dir $$@)
23         $$(HAPPY) $$($1_$2_$3_ALL_HAPPY_OPTS) $$< -o $$@
24
25 $1/$2/build/%.hs : $1/$4/%.y $$(MKDIRHIER)
26         $$(MKDIRHIER) $$(dir $$@)
27         $$(HAPPY) $$($1_$2_$3_ALL_HAPPY_OPTS) $$< -o $$@
28
29 $1/$2/build/%.hs : $1/$4/%.x $$(MKDIRHIER)
30         $$(MKDIRHIER) $$(dir $$@)
31         $$(ALEX) $$($1_$2_$3_ALL_ALEX_OPTS) $$< -o $$@
32
33 $1/$2/build/%_hsc.c $1/$2/build/%_hsc.h $1/$2/build/%.hs : $1/$4/%.hsc $$(HSC2HS_INPLACE)
34         $$(MKDIRHIER) $$(dir $$@)
35         $$(HSC2HS_INPLACE) $$($1_$2_$3_ALL_HSC2HS_OPTS) $$< -o $$@
36         touch $$(patsubst %.hsc,%_hsc.c,$$<)
37
38 # Compiling Haskell source
39
40 $1/$2/build/%.$$($3_osuf) : $1/$4/%.hs $$($1_$2_HC_DEP)
41         $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
42
43 $1/$2/build/%.$$($3_osuf) : $1/$4/%.lhs $$($1_$2_HC_DEP)
44         $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
45
46 $1/$2/build/%.$$($3_hcsuf) : $1/$4/%.hs $$($1_$2_HC_DEP)
47         $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -C $$< -o $$@
48
49 $1/$2/build/%.$$($3_hcsuf) : $1/$4/%.lhs $$($1_$2_HC_DEP)
50         $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -C $$< -o $$@
51
52 endif
53
54 # XXX: for some reason these get used in preference to the direct
55 # .hs->.o rule, I don't know why --SDM
56
57 $1/$2/build/%.$$($3_osuf) : $1/$4/%.hc
58         $$(CC) $$($1_$2_$3_ALL_CC_OPTS) -c $$< -o $$@
59
60 # $1/$2/build/%.$$($3_osuf) : $1/$2/build/%.$$($3_way_)hc
61 #       $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
62 #
63 # $1/$2/build/%.$$($3_osuf) : $1/$2/build/%.hc
64 #       $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
65 #
66 # $1/$2/build/%.$$($3_way_)s : $1/$2/build/%.$$($3_way_)hc
67 #       $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -S $$< -o $$@
68
69 # Now the rules for hs-boot files.
70
71 $1/$2/build/%.hs-boot : $1/$4/%.hs-boot
72         $$(CP) $$< $$@
73
74 $1/$2/build/%.lhs-boot : $1/$4/%.lhs-boot
75         $$(CP) $$< $$@
76
77 $1/$2/build/%.$$($3_way_)o-boot : $1/$4/%.hs-boot $$($1_$2_HC_DEP)
78         $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
79
80 $1/$2/build/%.$$($3_way_)o-boot : $1/$4/%.lhs-boot $$($1_$2_HC_DEP)
81         $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@
82
83 # stubs are automatically generated and compiled by GHC
84
85 $1/$2/build/%_stub.$$($3_osuf): $1/$2/build/%.$$($3_osuf)
86         @:
87
88 endef
89