[project @ 1998-03-11 13:56:18 by simonm]
[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 HC_SPLIT_PRE= \
34  $(RM) $@ ; if [ ! -d $(basename $@) ]; then mkdir $(basename $@); else \
35  find $(basename $@) -name '*.$(way_)o' -print | xargs $(RM) __rm_food ; fi
36 HC_SPLIT_POST  = touch $@
37
38 HC_PRE__       = $(patsubst %,$(HC_SPLIT_PRE) ; ,$(filter -split-objs,$(HC_OPTS)))
39 HC_POST__      = $(patsubst %,$(HC_SPLIT_POST) ; ,$(filter -split-objs,$(HC_OPTS)))
40
41 SRC_HC_POST_OPTS += $(HC_POST__)
42 SRC_HC_PRE_OPTS  += $(HC_PRE__)
43
44 %.$(way_)o : %.hs
45         $(HC_PRE_OPTS)
46         $(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
47         $(HC_POST_OPTS)
48                          
49 %.$(way_)o : %.lhs       
50         $(HC_PRE_OPTS)
51         $(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
52         $(HC_POST_OPTS)
53                          
54 %.$(way_)hc : %.lhs      
55         $(RM) $@
56         $(HC) $(HC_OPTS) -C $< -o $@
57                          
58 %.$(way_)hc : %.hs       
59         $(RM) $@
60         $(HC) $(HC_OPTS) -C $< -o $@
61                          
62 %.$(way_)o : %.$(way_)hc 
63         $(HC_PRE_OPTS)
64         $(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
65         $(HC_POST_OPTS)
66
67 %.$(way_)s : %.$(way_)hc 
68         $(HC_PRE_OPTS)
69         $(HC) $(HC_OPTS) -S $< -o $@ -osuf $(subst .,,$(suffix $@))
70         $(HC_POST_OPTS)
71
72 %.$(way_)hc : %.lhc
73         @$(RM) $@
74         $(UNLIT) $< $@
75         @chmod 444 $@
76
77
78 # Here's an interesting rule!
79 # The .hi file depends on the .o file,
80 # so if the .hi file is dated earlier than the .o file (commonly the case,
81 # when interfaces are stable) this rule just makes sure that the .o file,
82 # is up to date.  Then it does nothing to generate the .hi file from the 
83 # .o file, because the act of making sure the .o file is up to date also
84 # updates the .hi file (if necessary).
85
86 %.$(way_)hi : %.$(way_)o
87         @if [ ! -f $@ ] ; then \
88             echo Panic! $< exists, but $@ does not. \
89             exit 1; \
90         else exit 0 ; \
91         fi                                                      
92
93 %.$(way_)hi : %.$(way_)hc
94         @if [ ! -f $@ ] ; then \
95             echo Panic! $< exists, but $@ does not. \
96             exit 1; \
97         else exit 0 ; \
98         fi
99
100 #-----------------------------------------------------------------------------
101 # Happy Suffix Rules
102 #
103 .PRECIOUS: %.hs
104
105 %.hs : %.ly
106         $(HAPPY) $(HAPPY_OPTS) -g $<
107
108 #-----------------------------------------------------------------------------
109 # Lx Suffix Rules
110 #
111
112 %.hs : %.lx
113         $(LX) $(LX_OPTS) $<
114
115 #-----------------------------------------------------------------------------
116 # Green-card Suffix Rules
117 #
118
119 %.hs : %.gc
120         $(GREENCARD) $(GREENCARD_OPTS) $<
121
122 #-----------------------------------------------------------------------------
123 # C-related suffix rules
124
125 %.$(way_)o : %.$(way_)s
126         @$(RM) $@
127         $(AS) $(AS_OPTS) -o $@ $< || ( $(RM) $@ && exit 1 )
128
129 %.$(way_)o : %.c
130         @$(RM) $@
131         $(CC) $(CC_OPTS) -c $< -o $@
132
133 %.$(way_)o : %.S
134         @$(RM) $@
135         $(CC) $(CC_OPTS) -c $< -o $@
136
137 #%.$(way_)s : %.c
138 #       @$(RM) $@
139 #       $(CC) $(CC_OPTS) -S $< -o $@
140
141 %.c : %.flex
142         @$(RM) $@
143         $(FLEX) -t $(FLEX_OPTS) $< > $@ || ( $(RM) $@ && exit 1 )
144 %.c : %.lex
145         @$(RM) $@
146         $(FLEX) -t $(FLEX_OPTS) $< > $@ || ( $(RM) $@ && exit 1 )
147
148 #-----------------------------------------------------------------------------
149 # Yacc stuff
150
151 %.tab.c %.tab.h : %.y
152         @$(RM) $*.tab.h $*.tab.c y.tab.c y.tab.h y.output
153         $(YACC) $(YACC_OPTS) $<
154         $(MV) y.tab.c $*.tab.c
155         @chmod 444 $*.tab.c
156         $(MV) y.tab.h $*.tab.h
157         @chmod 444 $*.tab.h
158
159
160 #-----------------------------------------------------------------------------
161 # Runtest rules for calling $(HC) on a single-file Haskell program
162
163 %.runtest : %.hs
164         $(TIME) $(RUNTEST) $(HC) $(RUNTEST_OPTS) $<
165
166 #-----------------------------------------------------------------------------
167 # Doc processing suffix rules
168 #
169 # ToDo: make these more robust
170 #
171 %.dvi : %.tex
172         @$(RM) $@
173         $(LTX) $<
174
175 %.ps : %.dvi
176         @$(RM) $@
177         dvips $< -o $@
178
179 %.tex : %.verb
180         @$(RM) $*.tex
181         expand $*.verb | $(VERBATIM) > $*.tex
182
183 %.tex : %.tib
184         @$(RM) $*.tex $*.verb-t.tex
185         $(TIB) $*.tib
186         expand $*.tib-t.tex | $(VERBATIM) > $*.tex
187         @$(RM) $*.tib-t.tex
188
189 %.ps : %.fig
190         @$(RM) $@
191         fig2dev -L ps $< $@
192
193 %.tex : %.fig
194         @$(RM) $@
195         fig2dev -L latex $< $@
196
197 #-----------------------------------------------------------------------------
198 # SGML suffix rules
199 #
200 %.sgml : %.vsgml
201         @$(RM) $@
202         expand $< | $(SGMLVERB) > $@
203
204 %.tex : %.sgml
205         @$(RM) $@
206         $(SGML2LATEX) -m --output=tex $<
207
208 %.dvi : %.sgml
209         @$(RM) $@
210         $(SGML2LATEX) -m --output=dvi $<
211
212 %,ps : %.sgml
213         @$(RM) $@
214         $(SGML2LATEX) -m --output=ps $<
215
216 %.html : %.sgml
217         @$(RM) $@
218         $(SGML2HTML) $<
219
220 %.info : %.sgml
221         @$(RM) $@
222         $(SGML2INFO) $<
223
224 %.txt : %.sgml
225         @$(RM) $@
226         $(SGML2TXT) $<
227
228 #-----------------------------------------------------------------------------
229 # Literate suffix rules
230
231 %.prl : %.lprl
232         @$(RM) $@
233         $(UNLIT) $(UNLIT_OPTS) $< $@
234         @chmod 444 $@
235
236 %.c : %.lc
237         @$(RM) $@
238         $(UNLIT) $< $@
239         @chmod 444 $@
240
241 %.h : %.lh
242         @$(RM) $@
243         $(UNLIT) $< $@
244         @chmod 444 $@