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