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