Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#################################################################################
#
# suffix.mk
#
# Suffix rules for fptools
#
#################################################################################
#
# This file contain the default suffix rules for all the fptools projects.
#
# No need to define .SUFFIXES because we don't use any suffix rules
# Instead we use gmake's pattern rules exlusively
.SUFFIXES:
# However, if $(way) is set then we have to define $(way_) and $(_way)
# from it in the obvious fashion.
# This must be done here (or earlier), but not in target.mk with the other
# way management, because the pattern rules in this file take a snapshot of
# the value of $(way_) and $(_way), and it's no good setting them later!
ifneq "$(way)" ""
way_ := $(way)_
_way := _$(way)
endif
#-----------------------------------------------------------------------------
# Haskell Suffix Rules
HASKELL_SPLIT_PRE= \
if [ ! -d $(basename $@) ]; then mkdir $(basename $@) ; else exit 0; fi; \
find $(basename $@) -name '*.$(way_)o' -print | xargs $(RM) __rm_food;
HASKELL_SPLIT_POST= touch $@
HASKELL_PRE_COMPILE=$(patsubst %,$(HASKELL_SPLIT_PRE),$(filter -split-objs,$(HC_OPTS)))
HASKELL_POST_COMPILE=$(patsubst %,$(HASKELL_SPLIT_POST),$(filter -split-objs,$(HC_OPTS)))
%.$(way_)o : %.hs
$(RM) $@
$(HASKELL_PRE_COMPILE)
$(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
$(HASKELL_POST_COMPILE)
%.$(way_)o : %.lhs
$(RM) $@
$(HASKELL_PRE_COMPILE)
$(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
$(HASKELL_POST_COMPILE)
%.$(way_)hc : %.lhs
$(RM) $@
$(HC) $(HC_OPTS) -C $< -o $@
%.$(way_)o : %.$(way_)hc
$(RM) $@
$(HASKELL_PRE_COMPILE)
$(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
$(HASKELL_POST_COMPILE)
%.$(way_)hc : %.lhc
@$(RM) $@
$(UNLIT) $< $@
@chmod 444 $@
# Here's an interesting rule!
# The .hi file depends on the .o file,
# so if the .hi file is dated earlier than the .o file (commonly the case,
# when interfaces are stable) this rule just makes sure that the .o file,
# is up to date. Then it does nothing to generate the .hi file from the
# .o file, because the act of making sure the .o file is up to date also
# updates the .hi file (if necessary).
%.$(way_)hi : %.$(way_)o
@if [ ! -f $@ ] ; then \
echo Panic! $< exists, but $@ does not. \
exit 1; \
else exit 0 ; \
fi
%.$(way_)hi : %.$(way_)hc
@if [ ! -f $@ ] ; then \
echo Panic! $< exists, but $@ does not. \
exit 1; \
else exit 0 ; \
fi
#-----------------------------------------------------------------------------
# Happy Suffix Rules
#
.PRECIOUS: %.hs
%.hs : %.ly
$(HAPPY) $(HAPPY_OPTS) -g $<
#-----------------------------------------------------------------------------
# Lx Suffix Rules
#
.PRECIOUS: %.hs
%.hs : %.lx
$(LX) $(LX_OPTS) $<
#-----------------------------------------------------------------------------
# C-related suffix rules
%.$(way_)o : %.$(way_)s
@$(RM) $@
$(AS) $(AS_OPTS) -o $@ $< || ( $(RM) $@ && exit 1 )
%.$(way_)o : %.c
@$(RM) $@
$(CC) $(CC_OPTS) -c $< -o $@
#%.$(way_)s : %.c
# @$(RM) $@
# $(CC) $(CC_OPTS) -S $< -o $@
%.c : %.flex
@$(RM) $@
$(FLEX) -t $(FLEX_OPTS) $< > $@ || ( $(RM) $@ && exit 1 )
#-----------------------------------------------------------------------------
# Yacc stuff
%.tab.c %.tab.h : %.y
@$(RM) $*.tab.h $*.tab.c y.tab.c y.tab.h y.output
$(YACC) $(YACC_OPTS) $<
$(MV) y.tab.c $*.tab.c
@chmod 444 $*.tab.c
$(MV) y.tab.h $*.tab.h
@chmod 444 $*.tab.h
#-----------------------------------------------------------------------------
# Runtest rules for calling $(HC) on a single-file Haskell program
%.hs : %.runtest
$(TIME) $(RUNTEST) $(HC) $(RUNTEST_FLAGS) -o2 $*.stderr $<
#-----------------------------------------------------------------------------
# Doc processing suffix rules
%.dvi : %.tex
@$(RM) $@
$(LTX) $<
%.ps : %.dvi
@$(RM) $@
dvips $< -o $@
%.tex : %.verb
@$(RM) $*.tex
expand $*.verb | $(VERBATIM) > $*.tex
%.tex : %.tib
@$(RM) $*.tex $*.verb-t.tex
$(TIB) $*.tib
expand $*.tib-t.tex | $(VERBATIM) > $*.tex
@$(RM) $*.tib-t.tex
%.ps : %.fig
@$(RM) $@
fig2dev -L ps $< $@
%.tex : %.fig
@$(RM) $@
fig2dev -L latex $< $@
#-----------------------------------------------------------------------------
# Literate suffix rules
# ToDo: somehow macroize this lot. (if only!)
%.itxi : %.lit
@$(RM) $@
$(LIT2TEXI) -c $(LIT2TEXI_OPTS) -o $@ $<
@chmod 444 $@
%.txt : %.lit
@$(RM) $@
$(LIT2TEXT) -c $(LIT2TEXT_OPTS) -o $@ $<
@chmod 444 $@
%.ihtml : %.lit
@$(RM) $@
$(LIT2HTML) -c $(LIT2HTML_OPTS) -o $@ $<
@chmod 444 $@
%.itex : %.lit
@$(RM) $@
$(LIT2LATEX) -c $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@
#
# Produce stand-alone TEX documents
#
%.tex : %.itex
@$(RM) $@
$(LIT2LATEX) -S $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@
%.tex : %.lhs
@$(RM) $@
$(LIT2LATEX) -S $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@
%.texi : %.lhs
@$(RM) $@
$(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o $@ $<
@chmod 444 $@
%.html : %.lhs
@$(RM) $@
$(LIT2TEXI) $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.texi,$@) $<
$(TEXI2HTML) $(TEXI2HTML_OPTS) $(patsubst %.lhs,%.texi,$<)
@touch $@
%.info:: %.texi
@$(RM) $@
$(MAKEINFO) $(MAKEINFO_OPTS) $< && $(POSTMAKEINFO) $@
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
%.hs : %.lhs
@$(RM) $@
$(LIT2PGM) $(LIT2PGM_OPTS) -o $@ $<
@chmod 444 $@
%.itxi : %.lhs
@$(RM) $@
$(LIT2TEXI) -c $(LIT2TEXI_OPTS) -o $@ $<
@chmod 444 $@
%.ihtml : %.lhs
@$(RM) $@
$(LIT2HTML) -c $(LIT2HTML_OPTS) -o $@ $<
@chmod 444 $@
%.itex : %.lhs
@$(RM) $@
$(LIT2LATEX) -c $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@
%.tex : %.lhs
$(LIT2LATEX) -S -c $(LIT2LATEX_OPTS) -o $@ $<
$(HC) $(HC_OPTS) -c $< -o $@
%.itxi : %.lhc
@$(RM) $@
$(LIT2TEXI) -c $(LIT2TEXI_OPTS) -o $@ $<
@chmod 444 $@
%.ihtml : %.lhc
@$(RM) $@
$(LIT2HTML) -c $(LIT2HTML_OPTS) -o $@ $<
@chmod 444 $@
%.itex : %.lhc
@$(RM) $@
$(LIT2LATEX) -c $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@
#
# Temporary, until either unlit is lifted out of ghc/
# or literate is properly set up locally -- SOF
#
%.prl : %.lprl
@$(RM) $@
$(UNLIT) $(UNLIT_OPTS) $< $@
@chmod 444 $@
%.itxi : %.lprl
@$(RM) $@
$(LIT2TEXI) -c $(LIT2TEXI_OPTS) -o $@ $<
@chmod 444 $@
%.ihtml : %.lprl
@$(RM) $@
$(LIT2HTML) -c $(LIT2HTML_OPTS) -o $@ $<
@chmod 444 $@
%.itex : %.lprl
@$(RM) $@
$(LIT2LATEX) -c $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@
%.sh : %.lsh
@$(RM) $@
$(LIT2PGM) $(LIT2PGM_OPTS) -o $@ $<
@chmod 444 $@
%.itxi : %.lsh
@$(RM) $@
$(LIT2TEXI) -c $(LIT2TEXI_OPTS) -o $@ $<
@chmod 444 $@
%.ihtml : %.lsh
@$(RM) $@
$(LIT2HTML) -c $(LIT2HTML_OPTS) -o $@ $<
@chmod 444 $@
%.itex : %.lsh
@$(RM) $@
$(LIT2LATEX) -c $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@
%.c : %.lc
@$(RM) $@
$(UNLIT) $< $@
@chmod 444 $@
%.itxi : %.lc
@$(RM) $@
$(LIT2TEXI) -c $(LIT2TEXI_OPTS) -o $@ $<
@chmod 444 $@
%.ihtml : %.lc
@$(RM) $@
$(LIT2HTML) -c $(LIT2HTML_OPTS) -o $@ $<
@chmod 444 $@
%.itex : %.lc
@$(RM) $@
$(LIT2LATEX) -c $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@
%.h : %.lh
@$(RM) $@
$(UNLIT) $< $@
@chmod 444 $@
%.itxi : %.lh
@$(RM) $@
$(LIT2TEXI) -c $(LIT2TEXI_OPTS) -o $@ $<
@chmod 444 $@
%.ihtml : %.lh
@$(RM) $@
$(LIT2HTML) -c $(LIT2HTML_OPTS) -o $@ $<
@chmod 444 $@
%.itex : %.lh
@$(RM) $@
$(LIT2LATEX) -c $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@
%.flex : %.lflex
@$(RM) $@
$(LIT2PGM) $(LIT2PGM_OPTS) -o $@ $<
@chmod 444 $@
%.itxi : %.lflex
@$(RM) $@
$(LIT2TEXI) -c $(LIT2TEXI_OPTS) -o $@ $<
@chmod 444 $@
%.ihtml : %.lflex
@$(RM) $@
$(LIT2HTML) -c $(LIT2HTML_OPTS) -o $@ $<
@chmod 444 $@
%.itex : %.lflex
@$(RM) $@
$(LIT2LATEX) -c $(LIT2LATEX_OPTS) -o $@ $<
@chmod 444 $@