Mercurial > hg > CbC > old > device
annotate Makefile.mips @ 582:3f60e599cc04 intel-register-removal
*** empty log message ***
author | kono |
---|---|
date | Mon, 16 Jan 2006 00:52:56 +0900 |
parents | ad9ef203f95b |
children | cc2a83f98188 |
rev | line source |
---|---|
495 | 1 # CC = gcc -std=c99 |
417 | 2 # -O3 |
3 CFLAGS = -g -Wall -I. | |
444 | 4 # CFLAGS = -g -Wall -I. -pg -fprofile-arcs -ftest-coverage |
5 # LDFLAGS = -pg | |
6 # for Linux Zaurus | |
7 # CFLAGS = -fsigned-char -pipe -g -I. -I/home/zaurus/develop/include | |
446 | 8 CFLAGS1 = -g -I. |
417 | 9 BASE=0 |
10 STAGE=1 | |
11 MFLAGS=$(MFALGS) BASE=$(BASE) STAGE=$(STAGE) | |
12 ARCH=mips | |
13 MC=mc-$(ARCH) | |
14 MLIB = -lm | |
15 PRINTF= # printf.c | |
16 CONVERTER=conv/c.o conv/null.o | |
17 # conv/c2cbc.o conv/cbc2c.o | |
471 | 18 COMPLIB = mc-parse.o mc-codegen.o mc-switch.o mc-macro.o mc-tree.o mc-inline.o |
417 | 19 # CODE=mc-code-ia32.c |
20 CODE=mc-code-$(ARCH).c | |
444 | 21 # |
22 TARGET=test/simp | |
417 | 23 |
444 | 24 all: mc mc-ia32 mc-powerpc mc-mips mc-arm |
417 | 25 |
26 mc: mc-$(ARCH) | |
27 cp mc-$(ARCH) mc | |
28 | |
29 TAGS: | |
30 ctags mc-code-powerpc.c mc-code.h mc-codegen.c mc-codegen.h \ | |
31 mc-macro.c \ | |
32 mc-parse.c mc-tree.c mc-switch.c mc-switch.h \ | |
33 mc.h conv/c.c conv/c.h \ | |
495 | 34 mc-inline.h mc-inline.c \ |
417 | 35 conv/conv.h conv/convdef.h conv/null.c |
36 | |
37 mc-powerpc : mc-code-powerpc.o $(COMPLIB) $(CONVERTER) | |
444 | 38 $(CC) $(LDFLAGS) -g mc-code-powerpc.o $(COMPLIB) $(CONVERTER) -o $@ |
417 | 39 |
40 mc-ia32 : mc-code-ia32.o $(COMPLIB) $(CONVERTER) | |
444 | 41 $(CC) $(LDFLAGS) -g mc-code-ia32.o $(COMPLIB) $(CONVERTER) -o $@ |
417 | 42 |
43 mc-mips : mc-code-mips.o $(COMPLIB) $(CONVERTER) | |
444 | 44 $(CC) $(LDFLAGS) -g mc-code-mips.o $(COMPLIB) $(CONVERTER) -o $@ |
45 | |
46 mc-arm : mc-code-arm.o $(COMPLIB) $(CONVERTER) | |
47 $(CC) $(LDFLAGS) -g mc-code-arm.o $(COMPLIB) $(CONVERTER) -o $@ | |
417 | 48 |
495 | 49 conv/conv.h: conv_func.tbl tools/conv_func.pl |
50 perl tools/conv_func.pl | |
51 conv/convdef.h: conv_func.tbl tools/conv_func.pl | |
52 perl tools/conv_func.pl | |
53 conv/null.c: conv_func.tbl tools/conv_func.pl | |
54 perl tools/conv_func.pl | |
417 | 55 |
56 mc.h-new: | |
495 | 57 perl tools/mc-h-renum.pl mc.h > mc.h.1 |
417 | 58 mv mc.h.1 mc.h |
59 | |
60 check-all: check-all-c check-all-code | |
61 | |
62 check-all-c: | |
63 make check TARGET=test/basic | |
554 | 64 make check-inline TARGET=test/basic |
417 | 65 make check TARGET=test/call |
66 make check TARGET=test/fact0 | |
67 make check TARGET=test/float | |
68 make check TARGET=test/ifdef | |
69 make check TARGET=test/int | |
70 make check TARGET=test/macro | |
71 make check TARGET=test/regargs | |
72 make check TARGET=test/short | |
73 make check TARGET=test/simp | |
74 make check TARGET=test/simp0 | |
75 make check TARGET=test/simp1 | |
76 make check TARGET=test/static | |
77 make check TARGET=test/tmp | |
78 make check TARGET=test/tmp10 | |
79 make check TARGET=test/tmp11 | |
80 make check TARGET=test/tmp12 | |
81 make check TARGET=test/tmp5 | |
82 make check TARGET=test/tmp7 | |
83 make check TARGET=test/tmp8 | |
84 make check TARGET=test/tmp9 | |
85 make check TARGET=test/enum | |
86 make check TARGET=test/obsf | |
444 | 87 make check TARGET=test/obsf2 |
417 | 88 make check TARGET=test/long |
89 make check TARGET=test/tstdarg | |
90 make check TARGET=test/switch | |
91 make check TARGET=test/strinit | |
92 make check TARGET=test/code-gen-all | |
554 | 93 make check-inline TARGET=test/code-gen-all |
417 | 94 make check TARGET=test/bitfield |
95 make check TARGET=test/bitfield1 | |
444 | 96 make check TARGET=test/cext |
97 make check TARGET=test/const | |
98 make check TARGET=test/void_code | |
554 | 99 make check TARGET=test/putenemy |
495 | 100 make check TARGET=test/inline |
444 | 101 # make check TARGET=test/scope STDFLAG="-std=gnu99" |
554 | 102 # make check-inline TARGET=test/scope STDFLAG="-std=gnu99" |
417 | 103 #MK =-make |
104 MK= | |
105 check-all-code: | |
106 make check-code$(MK) TARGET=test/arg | |
107 make check-code$(MK) TARGET=test/conv | |
108 make check-code$(MK) TARGET=test/conv1 | |
109 make check-code$(MK) TARGET=test/fact-a | |
110 make check-code$(MK) TARGET=test/fact | |
111 make check-code$(MK) TARGET=test/goto | |
450
eaf9e2746c83
parallel assign for simple expr. (too complex solution)
kono
parents:
446
diff
changeset
|
112 make check-code$(MK) TARGET=test/test1 |
495 | 113 make check-code$(MK) TARGET=test/tmpa |
450
eaf9e2746c83
parallel assign for simple expr. (too complex solution)
kono
parents:
446
diff
changeset
|
114 make check-code$(MK) TARGET=test/tmp1 |
417 | 115 make check-code$(MK) TARGET=test/tmp2 |
116 make check-code$(MK) TARGET=test/tmp4 | |
450
eaf9e2746c83
parallel assign for simple expr. (too complex solution)
kono
parents:
446
diff
changeset
|
117 make check-code$(MK) TARGET=test/tmp6 |
444 | 118 make check-code$(MK) TARGET=test/scope |
581 | 119 make check-code$(MK) TARGET=test/throw |
554 | 120 make check-code$(MK) TARGET=test/too-long-argument |
417 | 121 |
122 check-nkf: | |
123 ( cd nkf203; $(CC) -g -o nkf1 nkf.c utf8tbl.c ) | |
124 ( cd nkf203; ../mc-$(ARCH) -s nkf.c utf8tbl.c ) | |
125 ( cd nkf203; $(CC) -g -o nkf nkf.s utf8tbl.s ) | |
126 ( cd nkf203; perl test.pl ) | |
127 | |
128 # -./$(MC) -Itest/ -s $(TARGET).c | |
129 | |
554 | 130 check: mc $(MC) $(TARGET).c |
495 | 131 -$(CC) $(CFLAGS1) $(STDFLAG) $(TARGET).c -o b.out $(MLIB) |
417 | 132 -./b.out > $(TARGET).gcc.out |
133 -./$(MC) -s $(TARGET).c | |
495 | 134 -$(CC) $(TARGET).s $(MLIB) |
417 | 135 -./a.out > $(TARGET).$(MC).out |
136 -diff $(TARGET).gcc.out $(TARGET).$(MC).out | |
137 | |
554 | 138 check-inline: mc $(MC) $(TARGET).c |
139 -$(CC) $(CFLAGS1) $(STDFLAG) $(TARGET).c -o b.out $(MLIB) | |
140 -./b.out > $(TARGET).gcc.out | |
141 -./$(MC) -s -DINLINE=inline $(TARGET).c | |
142 -$(CC) $(TARGET).s $(MLIB) | |
143 -./a.out > $(TARGET).$(MC).out | |
144 -diff $(TARGET).gcc.out $(TARGET).$(MC).out | |
145 | |
146 check-code: mc $(MC) | |
417 | 147 -./$(MC) -s $(TARGET).c |
495 | 148 -$(CC) $(TARGET).s $(MLIB) |
417 | 149 -./a.out > $(TARGET).$(MC).out |
150 -diff $(TARGET).code-out $(TARGET).$(MC).out | |
554 | 151 check-code-make: mc $(MC) |
417 | 152 -./$(MC) -s $(TARGET).c |
495 | 153 -$(CC) $(TARGET).s $(MLIB) |
417 | 154 -./a.out > $(TARGET).code-out |
155 | |
156 test/code-gen-all.c: test/code-gen.pl test/code-gen.c | |
157 perl test/code-gen.pl < test/code-gen.c > test/code-gen-all.c | |
158 | |
495 | 159 incpri: |
160 perl tools/incpri.pl test/*.c | |
161 | |
417 | 162 tags: tags-$(ARCH) |
163 | |
164 tags-$(ARCH): | |
165 ctags mc.h mc-code.h mc-code-$(ARCH).c mc-codegen.c mc-codegen.h \ | |
166 mc-parse.c mc-tree.c \ | |
167 conv/c.c conv/c.h \ | |
168 conv/conv.h conv/convdef.h | |
169 | |
170 tar : | |
171 make clean | |
172 tar cBf - . | gzip > ../comp.tgz | |
173 | |
174 depend : | |
175 makedepend mc-code-ia32.c mc-code.h mc-codegen.c mc-codegen.h \ | |
176 mc-parse.c mc-tree.c mc-switch.c mc-switch.h mc.h \ | |
177 mc-macro.c mc-macro.h mc-parse.h \ | |
178 conv/c.c conv/c.h conv/c2cbc.c conv/c2cbc.h conv/cbc2c.c \ | |
179 conv/cbc2c.h conv/conv.h conv/convdef.h conv/null.c conv/null.h \ | |
180 mc-code-powerpc.c \ | |
181 mc-code-mips.c | |
182 | |
183 clean : | |
444 | 184 -rm -f mc mc-ia32 mc-powerpc mc-mips mc-arm *.bak *.s *.o *.cc mc mc1 mc2 a.out *~ core* */*.o *.bak test/*.s test/*.cc test/*.o test/*.bak test/*~ conv/*.s conv/*.cc conv/*.o conv/*.bak conv/*~ *.out */*.out *.i */*.i |
417 | 185 |
476 | 186 mc1 : b00.s b01.s mc-codegen.o mc-tree.o mc-switch.o mc-macro.o mc-inline.o $(CONVERTER) |
187 $(CC) -g -o $@ $(PRINTF) b00.s b01.s mc-codegen.o mc-tree.o mc-switch.o mc-macro.o mc-inline.o $(CONVERTER) | |
417 | 188 |
495 | 189 mc2 : b00.s b01.s b02.s b03.s mc-macro.o mc-inline.o $(CONVERTER) |
476 | 190 $(CC) -g -o $@ $(PRINTF) b00.s b01.s b02.s b03.s b04.s mc-macro.o mc-inline.o $(CONVERTER) |
417 | 191 |
192 b00.s : mc-parse.c $(MC) | |
193 ./$(MC) -s -ob00.s mc-parse.c | |
194 b01.s : $(CODE) $(MC) | |
195 ./$(MC) -s -ob01.s $(CODE) | |
196 b02.s : mc-codegen.c $(MC) | |
197 ./$(MC) -s -ob02.s mc-codegen.c | |
198 b03.s : mc-tree.c $(MC) | |
199 ./$(MC) -s -ob03.s mc-tree.c | |
200 b04.s : mc-switch.c $(MC) | |
201 ./$(MC) -s -ob04.s mc-switch.c | |
202 | |
203 b10.s : mc-parse.c mc1 | |
204 ./mc1 -s -ob10.s mc-parse.c | |
205 b11.s : $(CODE) $(PRINTF) mc1 | |
206 ./mc1 -s -ob11.s $(CODE) | |
207 b12.s : mc-codegen.c mc1 | |
208 ./mc1 -s -ob12.s mc-codegen.c | |
209 b13.s : mc-tree.c mc1 | |
210 ./mc1 -s -ob13.s mc-tree.c | |
211 b14.s : mc-switch.c mc1 | |
212 ./mc1 -s -ob14.s mc-switch.c | |
213 | |
214 b20.s : mc-parse.c mc2 | |
215 ./mc2 -s -ob20.s mc-parse.c | |
216 b21.s : $(CODE) $(PRINTF) mc2 | |
217 ./mc2 -s -ob21.s $(CODE) | |
218 b22.s : mc-codegen.c mc2 | |
219 ./mc2 -s -ob22.s mc-codegen.c | |
220 b23.s : mc-tree.c mc2 | |
221 ./mc2 -s -ob23.s mc-tree.c | |
222 b24.s : mc-switch.c mc1 | |
223 ./mc2 -s -ob24.s mc-switch.c | |
224 | |
225 diff : b00.s b01.s b02.s b03.s b04.s b10.s b11.s b12.s b13.s b14.s | |
226 -diff b00.s b10.s | |
227 -diff b01.s b11.s | |
228 -diff b02.s b12.s | |
229 -diff b03.s b13.s | |
230 -diff b04.s b14.s | |
231 | |
232 diff2 : b00.s b01.s b02.s b03.s b04.s b20.s b21.s b22.s b23.s b24.s | |
233 -diff b00.s b20.s | |
234 -diff b01.s b21.s | |
235 -diff b02.s b22.s | |
236 -diff b03.s b23.s | |
237 -diff b04.s b24.s | |
238 | |
495 | 239 # DO NOT DELETE |
240 | |
241 mc-code-ia32.o: /usr/include/stdio.h /usr/include/features.h | |
242 mc-code-ia32.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
243 mc-code-ia32.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
244 mc-code-ia32.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
245 mc-code-ia32.o: /usr/include/bits/sched.h /usr/include/libio.h | |
246 mc-code-ia32.o: /usr/include/_G_config.h /usr/include/wchar.h | |
247 mc-code-ia32.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
248 mc-code-ia32.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
249 mc-code-ia32.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
250 mc-code-ia32.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h mc-codegen.h | |
251 mc-code-ia32.o: mc-code.h | |
252 mc-codegen.o: /usr/include/stdio.h /usr/include/features.h | |
253 mc-codegen.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
254 mc-codegen.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
255 mc-codegen.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
256 mc-codegen.o: /usr/include/bits/sched.h /usr/include/libio.h | |
257 mc-codegen.o: /usr/include/_G_config.h /usr/include/wchar.h | |
258 mc-codegen.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
259 mc-codegen.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
260 mc-codegen.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
261 mc-codegen.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h mc-codegen.h | |
262 mc-codegen.o: mc-code.h mc-switch.h mc-inline.h | |
263 mc-parse.o: /usr/include/stdio.h /usr/include/features.h | |
264 mc-parse.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
265 mc-parse.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
266 mc-parse.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
267 mc-parse.o: /usr/include/bits/sched.h /usr/include/libio.h | |
268 mc-parse.o: /usr/include/_G_config.h /usr/include/wchar.h | |
269 mc-parse.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
270 mc-parse.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
271 mc-parse.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
272 mc-parse.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h mc-codegen.h | |
273 mc-parse.o: mc-switch.h mc-macro.h mc-inline.h conv/conv.h | |
274 mc-tree.o: /usr/include/stdio.h /usr/include/features.h | |
275 mc-tree.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
276 mc-tree.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
277 mc-tree.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
278 mc-tree.o: /usr/include/bits/sched.h /usr/include/libio.h | |
279 mc-tree.o: /usr/include/_G_config.h /usr/include/wchar.h | |
280 mc-tree.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
281 mc-tree.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
282 mc-tree.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
283 mc-tree.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h | |
284 mc-switch.o: /usr/include/stdio.h /usr/include/features.h | |
285 mc-switch.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
286 mc-switch.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
287 mc-switch.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
288 mc-switch.o: /usr/include/bits/sched.h /usr/include/libio.h | |
289 mc-switch.o: /usr/include/_G_config.h /usr/include/wchar.h | |
290 mc-switch.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
291 mc-switch.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
292 mc-switch.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
293 mc-switch.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h mc-codegen.h | |
294 mc-switch.o: mc-code.h | |
295 mc-macro.o: /usr/include/stdio.h /usr/include/features.h | |
296 mc-macro.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
297 mc-macro.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
298 mc-macro.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
299 mc-macro.o: /usr/include/bits/sched.h /usr/include/libio.h | |
300 mc-macro.o: /usr/include/_G_config.h /usr/include/wchar.h | |
301 mc-macro.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
302 mc-macro.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
303 mc-macro.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
304 mc-macro.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h mc-macro.h | |
305 mc-macro.o: mc-codegen.h mc-code.h | |
306 conv/c.o: /usr/include/stdio.h /usr/include/features.h | |
307 conv/c.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
308 conv/c.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
309 conv/c.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
310 conv/c.o: /usr/include/bits/sched.h /usr/include/libio.h | |
311 conv/c.o: /usr/include/_G_config.h /usr/include/wchar.h | |
312 conv/c.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
313 conv/c.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
314 conv/c.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
315 conv/c.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h conv/conv.h | |
316 conv/c.o: conv/convdef.h conv/c.h | |
317 conv/c2cbc.o: mc.h | |
318 conv/cbc2c.o: mc.h | |
319 conv/null.o: /usr/include/stdio.h /usr/include/features.h | |
320 conv/null.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
321 conv/null.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
322 conv/null.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
323 conv/null.o: /usr/include/bits/sched.h /usr/include/libio.h | |
324 conv/null.o: /usr/include/_G_config.h /usr/include/wchar.h | |
325 conv/null.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
326 conv/null.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
327 conv/null.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
328 conv/null.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h conv/conv.h | |
329 conv/null.o: conv/convdef.h conv/null.h | |
330 mc-code-powerpc.o: /usr/include/stdio.h /usr/include/features.h | |
331 mc-code-powerpc.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
332 mc-code-powerpc.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
333 mc-code-powerpc.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
334 mc-code-powerpc.o: /usr/include/bits/sched.h /usr/include/libio.h | |
335 mc-code-powerpc.o: /usr/include/_G_config.h /usr/include/wchar.h | |
336 mc-code-powerpc.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
337 mc-code-powerpc.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
338 mc-code-powerpc.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
339 mc-code-powerpc.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h mc-code.h | |
340 mc-code-powerpc.o: mc-codegen.h | |
341 mc-code-mips.o: /usr/include/stdio.h /usr/include/features.h | |
342 mc-code-mips.o: /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h | |
343 mc-code-mips.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stddef.h | |
344 mc-code-mips.o: /usr/include/bits/types.h /usr/include/bits/pthreadtypes.h | |
345 mc-code-mips.o: /usr/include/bits/sched.h /usr/include/libio.h | |
346 mc-code-mips.o: /usr/include/_G_config.h /usr/include/wchar.h | |
347 mc-code-mips.o: /usr/include/bits/wchar.h /usr/include/gconv.h | |
348 mc-code-mips.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/stdarg.h | |
349 mc-code-mips.o: /usr/lib/gcc-lib/mipsEEel-linux/2.95.2/include/va-mips.h | |
350 mc-code-mips.o: /usr/include/bits/stdio_lim.h mc.h mc-parse.h mc-code.h | |
351 mc-code-mips.o: mc-codegen.h |