annotate Makefile @ 245:8a72b0afccfc

*** empty log message ***
author kono
date Thu, 06 May 2004 11:38:56 +0900
parents 8675ea3d2c7f
children 8313c965c0e2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
1 CC = gcc
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
2 # -O3
59
eeca07d1b1c2 *** empty log message ***
kono
parents: 32
diff changeset
3 CFLAGS = -g -Wall -I.
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
4 BASE=0
d35df41eac69 Initial revision
kono
parents:
diff changeset
5 STAGE=1
d35df41eac69 Initial revision
kono
parents:
diff changeset
6 MFLAGS=$(MFALGS) BASE=$(BASE) STAGE=$(STAGE)
126
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
7 ARCH=powerpc
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
8 MC=mc-$(ARCH)
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
9 # MLIB = -lm
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
10 PRINTF= # printf.c
82
25654dc29ecc First Floating Point coding done.
kono
parents: 81
diff changeset
11 CONVERTER=conv/c.o conv/null.o
25654dc29ecc First Floating Point coding done.
kono
parents: 81
diff changeset
12 # conv/c2cbc.o conv/cbc2c.o
94
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
13 COMPLIB = mc-parse.o mc-codegen.o mc-tree.o
109
e09f9de6f5d3 *** empty log message ***
kono
parents: 94
diff changeset
14 # CODE=mc-code-ia32.c
126
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
15 CODE=mc-code-$(ARCH).c
93
8f5d61239b93 *** empty log message ***
kono
parents: 82
diff changeset
16
130
fea1b499d47b fix register var save
kono
parents: 127
diff changeset
17 all: mc mc-ia32 mc-powerpc mc-mips
94
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
18
126
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
19 mc: mc-$(ARCH)
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
20 cp mc-$(ARCH) mc
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
21
195
c193120ee2a6 *** empty log message ***
kono
parents: 191
diff changeset
22 TAGS:
213
kono
parents: 195
diff changeset
23 ctags mc-code-powerpc.c mc-code.h mc-codegen.c mc-codegen.h \
195
c193120ee2a6 *** empty log message ***
kono
parents: 191
diff changeset
24 mc-parse.c mc-tree.c mc.h conv/c.c conv/c.h \
c193120ee2a6 *** empty log message ***
kono
parents: 191
diff changeset
25 conv/conv.h conv/convdef.h conv/null.c
c193120ee2a6 *** empty log message ***
kono
parents: 191
diff changeset
26
94
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
27 mc-powerpc : mc-code-powerpc.o $(COMPLIB) $(CONVERTER)
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
28 $(CC) -g mc-code-powerpc.o $(COMPLIB) $(CONVERTER) -o $@
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
29
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
30 mc-ia32 : mc-code-ia32.o $(COMPLIB) $(CONVERTER)
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
31 $(CC) -g mc-code-ia32.o $(COMPLIB) $(CONVERTER) -o $@
61
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
32
130
fea1b499d47b fix register var save
kono
parents: 127
diff changeset
33 mc-mips : mc-code-mips.o $(COMPLIB) $(CONVERTER)
fea1b499d47b fix register var save
kono
parents: 127
diff changeset
34 $(CC) -g mc-code-mips.o $(COMPLIB) $(CONVERTER) -o $@
fea1b499d47b fix register var save
kono
parents: 127
diff changeset
35
82
25654dc29ecc First Floating Point coding done.
kono
parents: 81
diff changeset
36 conv/conv.h: conv_func.tbl conv_func.pl
67
254a0c576114 argument type list
kono
parents: 66
diff changeset
37 perl conv_func.pl
82
25654dc29ecc First Floating Point coding done.
kono
parents: 81
diff changeset
38 conv/convdef.h: conv_func.tbl conv_func.pl
25654dc29ecc First Floating Point coding done.
kono
parents: 81
diff changeset
39 perl conv_func.pl
25654dc29ecc First Floating Point coding done.
kono
parents: 81
diff changeset
40 conv/null.c: conv_func.tbl conv_func.pl
67
254a0c576114 argument type list
kono
parents: 66
diff changeset
41 perl conv_func.pl
254a0c576114 argument type list
kono
parents: 66
diff changeset
42
166
9e55cc5551fb *** empty log message ***
kono
parents: 161
diff changeset
43 mc.h-new:
9e55cc5551fb *** empty log message ***
kono
parents: 161
diff changeset
44 perl mc-h-renum.pl mc.h > mc.h.1
9e55cc5551fb *** empty log message ***
kono
parents: 161
diff changeset
45 mv mc.h.1 mc.h
9e55cc5551fb *** empty log message ***
kono
parents: 161
diff changeset
46
172
096559f07a70 some check
kono
parents: 166
diff changeset
47 check-all: check-all-c check-all-code
096559f07a70 some check
kono
parents: 166
diff changeset
48
096559f07a70 some check
kono
parents: 166
diff changeset
49 check-all-c:
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
50 make check TARGET=test/basic
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
51 make check TARGET=test/call
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
52 make check TARGET=test/fact0
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
53 make check TARGET=test/float
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
54 make check TARGET=test/ifdef
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
55 make check TARGET=test/int
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
56 make check TARGET=test/macro
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
57 make check TARGET=test/regargs
172
096559f07a70 some check
kono
parents: 166
diff changeset
58 make check TARGET=test/short
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
59 make check TARGET=test/simp
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
60 make check TARGET=test/simp0
172
096559f07a70 some check
kono
parents: 166
diff changeset
61 make check TARGET=test/static
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
62 make check TARGET=test/tmp
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
63 make check TARGET=test/tmp10
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
64 make check TARGET=test/tmp11
161
cc2fc5c0dfe5 struct field fix
kono
parents: 158
diff changeset
65 make check TARGET=test/tmp12
172
096559f07a70 some check
kono
parents: 166
diff changeset
66 # make check TARGET=test/tmp5
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
67 make check TARGET=test/tmp7
172
096559f07a70 some check
kono
parents: 166
diff changeset
68 # make check TARGET=test/tmp8
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
69 make check TARGET=test/tmp9
176
kono
parents: 172
diff changeset
70 make check TARGET=test/enum
214
4f459364c334 *** empty log message ***
kono
parents: 213
diff changeset
71 make check TARGET=test/obsf
221
ceae585186d9 *** empty log message ***
kono
parents: 214
diff changeset
72 make check TARGET=test/long
ceae585186d9 *** empty log message ***
kono
parents: 214
diff changeset
73 make check TARGET=test/code-gen-all
172
096559f07a70 some check
kono
parents: 166
diff changeset
74 #MK =-make
096559f07a70 some check
kono
parents: 166
diff changeset
75 MK=
096559f07a70 some check
kono
parents: 166
diff changeset
76 check-all-code:
096559f07a70 some check
kono
parents: 166
diff changeset
77 make check-code$(MK) TARGET=test/arg
096559f07a70 some check
kono
parents: 166
diff changeset
78 make check-code$(MK) TARGET=test/conv
096559f07a70 some check
kono
parents: 166
diff changeset
79 make check-code$(MK) TARGET=test/conv1
096559f07a70 some check
kono
parents: 166
diff changeset
80 make check-code$(MK) TARGET=test/fact-a
096559f07a70 some check
kono
parents: 166
diff changeset
81 make check-code$(MK) TARGET=test/fact
096559f07a70 some check
kono
parents: 166
diff changeset
82 make check-code$(MK) TARGET=test/goto
096559f07a70 some check
kono
parents: 166
diff changeset
83 # make check-code$(MK) TARGET=test/test1
096559f07a70 some check
kono
parents: 166
diff changeset
84 # make check-code$(MK) TARGET=test/tmp1
096559f07a70 some check
kono
parents: 166
diff changeset
85 make check-code$(MK) TARGET=test/tmp2
096559f07a70 some check
kono
parents: 166
diff changeset
86 make check-code$(MK) TARGET=test/tmp4
096559f07a70 some check
kono
parents: 166
diff changeset
87 # make check-code$(MK) TARGET=test/tmp6
096559f07a70 some check
kono
parents: 166
diff changeset
88
191
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
89 check-nkf:
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
90 ( cd nkf203; $(CC) -g -o nkf1 nkf.c utf8tbl.c )
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
91 ( cd nkf203; ../mc-$(ARCH) -s nkf.c utf8tbl.c )
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
92 ( cd nkf203; $(CC) -g -o nkf nkf.s utf8tbl.s )
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
93 ( cd nkf203; perl test.pl )
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
94
224
82a55cc6b5fc *** empty log message ***
kono
parents: 221
diff changeset
95 # -./$(MC) -Itest/ -s $(TARGET).c
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
96
245
8a72b0afccfc *** empty log message ***
kono
parents: 225
diff changeset
97 check: $(MC) $(TARGET).c
126
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
98 -gcc $(TARGET).c -o b.out $(MLIB)
123
5f180dc8d84e intel fix.
kono
parents: 122
diff changeset
99 -./b.out > $(TARGET).gcc.out
224
82a55cc6b5fc *** empty log message ***
kono
parents: 221
diff changeset
100 -./$(MC) -s $(TARGET).c
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
101 -gcc $(TARGET).s $(MLIB)
123
5f180dc8d84e intel fix.
kono
parents: 122
diff changeset
102 -./a.out > $(TARGET).$(MC).out
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
103 -diff $(TARGET).gcc.out $(TARGET).$(MC).out
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
104
172
096559f07a70 some check
kono
parents: 166
diff changeset
105 check-code: $(MC)
096559f07a70 some check
kono
parents: 166
diff changeset
106 -./$(MC) -s $(TARGET).c
096559f07a70 some check
kono
parents: 166
diff changeset
107 -gcc $(TARGET).s $(MLIB)
096559f07a70 some check
kono
parents: 166
diff changeset
108 -./a.out > $(TARGET).$(MC).out
096559f07a70 some check
kono
parents: 166
diff changeset
109 -diff $(TARGET).code-out $(TARGET).$(MC).out
096559f07a70 some check
kono
parents: 166
diff changeset
110 check-code-make: $(MC)
096559f07a70 some check
kono
parents: 166
diff changeset
111 -./$(MC) -s $(TARGET).c
096559f07a70 some check
kono
parents: 166
diff changeset
112 -gcc $(TARGET).s $(MLIB)
096559f07a70 some check
kono
parents: 166
diff changeset
113 -./a.out > $(TARGET).code-out
096559f07a70 some check
kono
parents: 166
diff changeset
114
245
8a72b0afccfc *** empty log message ***
kono
parents: 225
diff changeset
115 test/code-gen-all.c: test/code-gen.pl test/code-gen.c
8a72b0afccfc *** empty log message ***
kono
parents: 225
diff changeset
116 perl test/code-gen.pl < test/code-gen.c > test/code-gen-all.c
8a72b0afccfc *** empty log message ***
kono
parents: 225
diff changeset
117
186
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
118 tags: tags-$(ARCH)
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
119
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
120 tags-$(ARCH):
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
121 ctags mc.h mc-code.h mc-code-$(ARCH).c mc-codegen.c mc-codegen.h \
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
122 mc-parse.c mc-tree.c \
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
123 conv/c.c conv/c.h \
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
124 conv/conv.h conv/convdef.h
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
125
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
126 tar :
d35df41eac69 Initial revision
kono
parents:
diff changeset
127 make clean
d35df41eac69 Initial revision
kono
parents:
diff changeset
128 tar cBf - . | gzip > ../comp.tgz
d35df41eac69 Initial revision
kono
parents:
diff changeset
129
d35df41eac69 Initial revision
kono
parents:
diff changeset
130 depend :
67
254a0c576114 argument type list
kono
parents: 66
diff changeset
131 makedepend mc-code-ia32.c mc-code.h mc-codegen.c mc-codegen.h \
254a0c576114 argument type list
kono
parents: 66
diff changeset
132 mc-parse.c mc-tree.c mc.h \
254a0c576114 argument type list
kono
parents: 66
diff changeset
133 conv/c.c conv/c.h conv/c2cbc.c conv/c2cbc.h conv/cbc2c.c \
93
8f5d61239b93 *** empty log message ***
kono
parents: 82
diff changeset
134 conv/cbc2c.h conv/conv.h conv/convdef.h conv/null.c conv/null.h \
150
f8271009a314 MIPS continue
kono
parents: 140
diff changeset
135 mc-code-powerpc.c \
f8271009a314 MIPS continue
kono
parents: 140
diff changeset
136 mc-code-mips.c
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
137
d35df41eac69 Initial revision
kono
parents:
diff changeset
138 clean :
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
139 -rm -f mc mc-ia32 mc-powerpc mc-mips *.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
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
140
78
8418d4b7caa7 *** empty log message ***
kono
parents: 67
diff changeset
141 mc1 : b00.s b01.s mc-codegen.o mc-tree.o $(CONVERTER)
8418d4b7caa7 *** empty log message ***
kono
parents: 67
diff changeset
142 $(CC) -g -o $@ $(PRINTF) b00.s b01.s mc-codegen.o mc-tree.o $(CONVERTER)
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
143
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
144 mc2 : b00.s b01.s b02.s b03.s mc-codegen.o mc-tree.o $(CONVERTER)
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
145 $(CC) -g -o $@ $(PRINTF) b00.s b01.s b02.s b03.s $(CONVERTER)
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
146
94
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
147 b00.s : mc-parse.c $(MC)
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
148 ./$(MC) -s -ob00.s mc-parse.c
109
e09f9de6f5d3 *** empty log message ***
kono
parents: 94
diff changeset
149 b01.s : $(CODE) $(MC)
e09f9de6f5d3 *** empty log message ***
kono
parents: 94
diff changeset
150 ./$(MC) -s -ob01.s $(CODE)
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
151 b02.s : mc-codegen.c $(MC)
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
152 ./$(MC) -s -ob02.s mc-codegen.c
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
153 b03.s : mc-tree.c $(MC)
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
154 ./$(MC) -s -ob03.s mc-tree.c
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
155
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
156 b10.s : mc-parse.c mc1
65
8ad746efa4f8 *** empty log message ***
kono
parents: 62
diff changeset
157 ./mc1 -s -ob10.s mc-parse.c
109
e09f9de6f5d3 *** empty log message ***
kono
parents: 94
diff changeset
158 b11.s : $(CODE) $(PRINTF) mc1
e09f9de6f5d3 *** empty log message ***
kono
parents: 94
diff changeset
159 ./mc1 -s -ob11.s $(CODE)
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
160 b12.s : mc-codegen.c mc1
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
161 ./mc1 -s -ob12.s mc-codegen.c
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
162 b13.s : mc-tree.c mc1
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
163 ./mc1 -s -ob13.s mc-tree.c
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
164
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
165 b20.s : mc-parse.c mc2
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
166 ./mc2 -s -ob20.s mc-parse.c
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
167 b21.s : $(CODE) $(PRINTF) mc2
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
168 ./mc2 -s -ob21.s $(CODE)
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
169 b22.s : mc-codegen.c mc2
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
170 ./mc2 -s -ob22.s mc-codegen.c
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
171 b23.s : mc-tree.c mc2
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
172 ./mc2 -s -ob23.s mc-tree.c
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
173
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
174 diff : b00.s b01.s b02.s b03.s b10.s b11.s b12.s b13.s
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
175 -diff b00.s b10.s
d35df41eac69 Initial revision
kono
parents:
diff changeset
176 -diff b01.s b11.s
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
177 -diff b02.s b12.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
178 -diff b03.s b13.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
179
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
180 diff2 : b00.s b01.s b02.s b03.s b20.s b21.s b22.s b23.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
181 -diff b00.s b20.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
182 -diff b01.s b21.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
183 -diff b02.s b22.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
184 -diff b03.s b23.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
185
67
254a0c576114 argument type list
kono
parents: 66
diff changeset
186
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
187 # DO NOT DELETE
d35df41eac69 Initial revision
kono
parents:
diff changeset
188
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
189 mc-code-ia32.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
190 mc-code-ia32.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
191 mc-code-ia32.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
192 mc-code-ia32.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
193 mc-code-ia32.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
194 mc-code-ia32.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
195 mc-code-ia32.o: mc-codegen.h mc-code.h
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
196 mc-codegen.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
197 mc-codegen.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
198 mc-codegen.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
199 mc-codegen.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
200 mc-codegen.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
201 mc-codegen.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
202 mc-codegen.o: mc-codegen.h mc-code.h
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
203 mc-parse.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
204 mc-parse.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
205 mc-parse.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
206 mc-parse.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
207 mc-parse.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
208 mc-parse.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
209 mc-parse.o: mc-codegen.h
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
210 mc-tree.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
211 mc-tree.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
212 mc-tree.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
213 mc-tree.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
214 mc-tree.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
215 mc-tree.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
216 mc.o: /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
217 mc.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
218 mc.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
219 mc.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
220 mc.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
221 mc.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
222 conv/c.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
223 conv/c.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
224 conv/c.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
225 conv/c.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
226 conv/c.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
227 conv/c.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
228 conv/c.o: conv/convdef.h conv/c.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
229 conv/c2cbc.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
230 conv/c2cbc.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
231 conv/c2cbc.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
232 conv/c2cbc.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
233 conv/c2cbc.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
234 conv/c2cbc.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
235 conv/cbc2c.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
236 conv/cbc2c.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
237 conv/cbc2c.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
238 conv/cbc2c.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
239 conv/cbc2c.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
240 conv/cbc2c.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
241 conv/null.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
242 conv/null.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
243 conv/null.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
244 conv/null.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
245 conv/null.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
246 conv/null.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
247 conv/null.o: conv/convdef.h conv/null.h
127
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
248 mc-code-powerpc.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
249 mc-code-powerpc.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
250 mc-code-powerpc.o: /usr/include/machine/types.h /usr/include/ppc/types.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
251 mc-code-powerpc.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
eb4d8975926c Intel float fix
kono
parents: 126
diff changeset
252 mc-code-powerpc.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
253 mc-code-powerpc.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
254 mc-code-powerpc.o: mc-code.h mc-codegen.h
150
f8271009a314 MIPS continue
kono
parents: 140
diff changeset
255 mc-code-mips.o: mc.h /usr/include/stdio.h /usr/include/sys/types.h
f8271009a314 MIPS continue
kono
parents: 140
diff changeset
256 mc-code-mips.o: /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h
f8271009a314 MIPS continue
kono
parents: 140
diff changeset
257 mc-code-mips.o: /usr/include/machine/types.h /usr/include/ppc/types.h
f8271009a314 MIPS continue
kono
parents: 140
diff changeset
258 mc-code-mips.o: /usr/include/machine/ansi.h /usr/include/ppc/ansi.h
f8271009a314 MIPS continue
kono
parents: 140
diff changeset
259 mc-code-mips.o: /usr/include/machine/endian.h /usr/include/ppc/endian.h
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
260 mc-code-mips.o: /usr/include/stdlib.h /usr/include/alloca.h conv/conv.h
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
261 mc-code-mips.o: mc-code.h mc-codegen.h