[project @ 2001-05-07 16:18:49 by sof]
[ghc-hetmet.git] / mk / suffix.mk
1 #################################################################################
2 #
3 #                           suffix.mk
4 #
5 #               Suffix rules for fptools
6 #
7 #################################################################################
8
9
10 # This file contain the default suffix rules for all the fptools projects.
11 #
12
13
14 # No need to define .SUFFIXES because we don't use any suffix rules
15 # Instead we use gmake's pattern rules exlusively
16
17 .SUFFIXES:
18
19 # However, if $(way) is set then we have to define $(way_) and $(_way)
20 # from it in the obvious fashion.
21 # This must be done here (or earlier), but not in target.mk with the other
22 # way management, because the pattern rules in this file take a snapshot of
23 # the value of $(way_) and $(_way), and it's no good setting them later!
24
25 ifneq "$(way)" ""
26   way_ := $(way)_
27   _way := _$(way)
28 endif
29
30 #-----------------------------------------------------------------------------
31 # Haskell Suffix Rules
32
33 # Turn off all the Haskell suffix rules if we're booting from .hc
34 # files.  The file bootstrap.mk contains alternative suffix rules in
35 # this case.
36 ifneq "$(BootingFromHc)" "YES"
37
38 %.$(way_)o : %.hs
39         $(HC_PRE_OPTS)
40         $(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
41         $(HC_POST_OPTS)
42
43 %.$(way_)o : %.lhs       
44         $(HC_PRE_OPTS)
45         $(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
46         $(HC_POST_OPTS)
47
48 %.$(way_)hc : %.lhs      
49         $(RM) $@
50         $(HC) $(HC_OPTS) -C $< -o $@
51
52 %.$(way_)hc : %.hs       
53         $(RM) $@
54         $(HC) $(HC_OPTS) -C $< -o $@
55
56 %.$(way_)o : %.$(way_)hc 
57         $(HC_PRE_OPTS)
58         $(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
59         $(HC_POST_OPTS)
60
61 %.$(way_)o : %.hc 
62         $(HC_PRE_OPTS)
63         $(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
64         $(HC_POST_OPTS)
65
66 %.$(way_)s : %.$(way_)hc 
67         $(HC_PRE_OPTS)
68         $(HC) $(HC_OPTS) -S $< -o $@ -osuf $(subst .,,$(suffix $@))
69         $(HC_POST_OPTS)
70
71 %.$(way_)hc : %.lhc
72         @$(RM) $@
73         $(UNLIT) $< $@
74         @chmod 444 $@
75
76
77 # Here's an interesting rule!
78 # The .hi file depends on the .o file,
79 # so if the .hi file is dated earlier than the .o file (commonly the case,
80 # when interfaces are stable) this rule just makes sure that the .o file,
81 # is up to date.  Then it does nothing to generate the .hi file from the 
82 # .o file, because the act of making sure the .o file is up to date also
83 # updates the .hi file (if necessary).
84
85 %.$(way_)hi : %.$(way_)o
86         @if [ ! -f $@ ] ; then \
87             echo Panic! $< exists, but $@ does not. \
88             exit 1; \
89         else exit 0 ; \
90         fi                                                      
91
92 %.$(way_)hi : %.$(way_)hc
93         @if [ ! -f $@ ] ; then \
94             echo Panic! $< exists, but $@ does not. \
95             exit 1; \
96         else exit 0 ; \
97         fi
98
99 endif # BootingViaC
100
101 #-----------------------------------------------------------------------------
102 # Happy Suffix Rules
103 #
104 .PRECIOUS: %.hs
105
106 %.hs : %.ly
107         $(HAPPY) $(HAPPY_OPTS) $<
108
109 %.hs : %.y
110         $(HAPPY) $(HAPPY_OPTS) $<
111
112 #-----------------------------------------------------------------------------
113 # hsc2hs Suffix Rules
114 #
115 ifneq "$(BootingFromHc)" "YES"
116 %_hsc.c %_hsc.h %.hs : %.hsc
117         $(HSC2HS) $<
118 endif
119
120 #-----------------------------------------------------------------------------
121 # Lx Suffix Rules
122 #
123
124 %.hs : %.lx
125         $(LX) $(LX_OPTS) $<
126
127 #-----------------------------------------------------------------------------
128 # Green-card Suffix Rules
129 #
130
131 .PRECIOUS: %.gc
132
133 %.hs : %.gc
134         $(GREENCARD) $(GC_OPTS) $< -o $@
135
136 %.lhs : %.gc
137         $(GREENCARD) $(GC_OPTS) $< -o $@
138
139 %.gc : %.pgc
140         $(CPP) $(GC_CPP_OPTS) $< | perl -pe 's#\\n#\n#g' > $@
141
142 #-----------------------------------------------------------------------------
143 # C-related suffix rules
144
145 %.$(way_)o : %.$(way_)s
146         @$(RM) $@
147         $(AS) $(AS_OPTS) -o $@ $< || ( $(RM) $@ && exit 1 )
148
149 %.$(way_)o : %.c
150         @$(RM) $@
151         $(CC) $(CC_OPTS) -c $< -o $@
152
153 %.$(way_)o : %.S
154         @$(RM) $@
155         $(CC) $(CC_OPTS) -c $< -o $@
156
157 #%.$(way_)s : %.c
158 #       @$(RM) $@
159 #       $(CC) $(CC_OPTS) -S $< -o $@
160
161 %.c : %.flex
162         @$(RM) $@
163         $(FLEX) -t $(FLEX_OPTS) $< > $@ || ( $(RM) $@ && exit 1 )
164 %.c : %.lex
165         @$(RM) $@
166         $(FLEX) -t $(FLEX_OPTS) $< > $@ || ( $(RM) $@ && exit 1 )
167
168 # stubs are automatically generated and compiled by GHC
169 %_stub.$(way_)o: %.o
170         @:
171
172 #-----------------------------------------------------------------------------
173 # Yacc stuff
174
175 %.tab.c %.tab.h : %.y
176         @$(RM) $*.tab.h $*.tab.c y.tab.c y.tab.h y.output
177         $(YACC) $(YACC_OPTS) $<
178         $(MV) y.tab.c $*.tab.c
179         @chmod 444 $*.tab.c
180         $(MV) y.tab.h $*.tab.h
181         @chmod 444 $*.tab.h
182
183
184 #-----------------------------------------------------------------------------
185 # Runtest rules for calling $(HC) on a single-file Haskell program
186
187 %.runtest : %.hs
188         $(TIME) $(RUNTEST) $(HC) $(RUNTEST_OPTS) $<
189
190 #-----------------------------------------------------------------------------
191 # Doc processing suffix rules
192 #
193 # ToDo: make these more robust
194 #
195 %.ps : %.dvi
196         @$(RM) $@
197         dvips $< -o $@
198
199 %.tex : %.tib
200         @$(RM) $*.tex $*.verb-t.tex
201         $(TIB) $*.tib
202         expand $*.tib-t.tex | $(VERBATIM) > $*.tex
203         @$(RM) $*.tib-t.tex
204
205 %.ps : %.fig
206         @$(RM) $@
207         fig2dev -L ps $< $@
208
209 %.tex : %.fig
210         @$(RM) $@
211         fig2dev -L latex $< $@
212
213 #-----------------------------------------------------------------------------
214 # SGML suffix rules
215 #
216 %.dvi : %.sgml
217         @$(RM) $@
218         $(SGML2DVI) $(SGML2DVI_OPTS) $<
219
220 %.ps : %.sgml
221         @$(RM) $@
222         $(SGML2PS) $(SGML2PS_OPTS) $<
223
224 %.html : %.sgml
225         @$(RM) $@
226 #       $(PERL) $(COLLATEINDEX) -N -o index.sgml
227 #       $(JADE) -t sgml -V html-index -d $(SGMLSTYLESHEET) -c $(DOCBOOK_CATALOG) $<
228 #       $(PERL) $(COLLATEINDEX) -N -o index.sgml
229         $(SGML2HTML) $(SGML2HTML_OPTS) $<
230
231 %.html : %.tex
232         @$(RM) $@
233         $(HEVEA) $(HEVEA_OPTS) $(patsubst %.tex,%.hva,$<) $<
234         $(HEVEA) $(HEVEA_OPTS) $(patsubst %.tex,%.hva,$<) $<
235         $(HACHA) $(HACHA_OPTS) $(patsubst %.tex,%.html,$<)
236 # Run HeVeA twice to resolve labels
237
238 %.rtf : %.sgml
239         @$(RM) $@
240         $(SGML2RTF) $(SGML2RTF_OPTS) $<
241
242 %.pdf : %.sgml
243         @$(RM) $@
244         $(SGML2PDF) $(SGML2PDF_OPTS) $<
245
246 #-----------------------------------------------------------------------------
247 # Literate suffix rules
248
249 %.prl : %.lprl
250         @$(RM) $@
251         $(UNLIT) $(UNLIT_OPTS) $< $@
252         @chmod 444 $@
253
254 %.c : %.lc
255         @$(RM) $@
256         $(UNLIT) $(UNLIT_OPTS) $< $@
257         @chmod 444 $@
258
259 %.h : %.lh
260         @$(RM) $@
261         $(UNLIT) $(UNLIT_OPTS) $< $@
262         @chmod 444 $@
263
264 #-----------------------------------------------------------------------------
265 # Win32 resource files
266 #
267 # The default is to use the GNU resource compiler.
268 #
269
270 %.$(way_)o : %.$(way_)rc
271         @$(RM) $@
272         windres $< $@