annotate Makefile @ 916:af6f9373ce64

include
author kono
date Thu, 10 Apr 2014 12:04:39 +0900
parents 7aa39f5128f9
children 08dcc3b7c39b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
916
af6f9373ce64 include
kono
parents: 913
diff changeset
1 GCC = gcc
773
e35af486b436 minor fix
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 770
diff changeset
2 CC = $(GCC) -std=c99 $(CCEXT) $(M) -fgnu89-inline
664
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
3 # -O3
836
a760656224fa parse mode diff is not worked yet...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 818
diff changeset
4 # MCFLAG = -DUSE_CODE_KEYWORD
a760656224fa parse mode diff is not worked yet...
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 818
diff changeset
5 CFLAGS = -g -Wall -I. $(MCFLAG) # -O
440
a531bbf572e3 regression test (case, float, long long)
kono
parents: 438
diff changeset
6 # CFLAGS = -g -Wall -I. -pg -fprofile-arcs -ftest-coverage
a531bbf572e3 regression test (case, float, long long)
kono
parents: 438
diff changeset
7 # LDFLAGS = -pg
407
dafb9110d70b ARM continue... emit_copy bug
kono
parents: 400
diff changeset
8 # for Linux Zaurus
dafb9110d70b ARM continue... emit_copy bug
kono
parents: 400
diff changeset
9 # CFLAGS = -fsigned-char -pipe -g -I. -I/home/zaurus/develop/include
669
1530b1a636ac ato mouchotto...
kono
parents: 668
diff changeset
10 CFLAGS1 = -g -I.
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
11 BASE=0
d35df41eac69 Initial revision
kono
parents:
diff changeset
12 STAGE=1
d35df41eac69 Initial revision
kono
parents:
diff changeset
13 MFLAGS=$(MFALGS) BASE=$(BASE) STAGE=$(STAGE)
731
1f6e34c4dbbf INTEL64 (start)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 725
diff changeset
14 ARCH=i64
126
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
15 MC=mc-$(ARCH)
561
de0b0380c461 comments
kono
parents: 556
diff changeset
16 MLIB = -lm
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
17 PRINTF= # printf.c
664
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
18 CONVERTER=conv/c.o conv/null.o conv/c2cbc.o conv/cbc2c.o
453
1e5ca85d3f97 inline on going...
kono
parents: 449
diff changeset
19 COMPLIB = mc-parse.o mc-codegen.o mc-switch.o mc-macro.o mc-tree.o mc-inline.o
109
e09f9de6f5d3 *** empty log message ***
kono
parents: 94
diff changeset
20 # CODE=mc-code-ia32.c
126
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
21 CODE=mc-code-$(ARCH).c
615
2dee957ef988 test case on undeclared name
kono
parents: 609
diff changeset
22 GCC_INCLUDE=`perl tools/find-gcc-include-path -p $(CC)`
664
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
23 #
420
efbd420386c5 non aligned bitfield (not yet finished)
kono
parents: 407
diff changeset
24 #
efbd420386c5 non aligned bitfield (not yet finished)
kono
parents: 407
diff changeset
25 TARGET=test/simp
93
8f5d61239b93 *** empty log message ***
kono
parents: 82
diff changeset
26
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
27 all: mc tags
94
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
28
731
1f6e34c4dbbf INTEL64 (start)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 725
diff changeset
29 predefined:
1f6e34c4dbbf INTEL64 (start)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 725
diff changeset
30 $(CC) -xc -E -dM /dev/null
1f6e34c4dbbf INTEL64 (start)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 725
diff changeset
31
690
5d3b4669854c fix prindirect
kono
parents: 689
diff changeset
32 ppc:
5d3b4669854c fix prindirect
kono
parents: 689
diff changeset
33 make ARCH=powerpc CCEXT="-arch ppc" check-all
5d3b4669854c fix prindirect
kono
parents: 689
diff changeset
34
775
a2a7b2835fa3 ia32 regression test
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 773
diff changeset
35 ia32:
a2a7b2835fa3 ia32 regression test
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 773
diff changeset
36 make ARCH=ia32 CCEXT="-m32" check-all
a2a7b2835fa3 ia32 regression test
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 773
diff changeset
37
776
d32ae7119cf1 fix code-out
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 775
diff changeset
38 ia32-make-code-check:
d32ae7119cf1 fix code-out
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 775
diff changeset
39 make ARCH=ia32 CCEXT="-m32" MK=-make check-all-code
d32ae7119cf1 fix code-out
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 775
diff changeset
40
666
7c42cf329666 *** empty log message ***
kono
parents: 664
diff changeset
41 mc: mc-$(ARCH)
126
1d1612fe705a *** empty log message ***
kono
parents: 123
diff changeset
42 cp mc-$(ARCH) mc
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
43
731
1f6e34c4dbbf INTEL64 (start)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 725
diff changeset
44 mc-i64 :conv/conv.h mc-include.c mc-code-i64.o $(COMPLIB) $(CONVERTER)
1f6e34c4dbbf INTEL64 (start)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 725
diff changeset
45 $(CC) $(LDFLAGS) -g mc-code-i64.o $(COMPLIB) $(CONVERTER) -o $@
1f6e34c4dbbf INTEL64 (start)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 725
diff changeset
46
691
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
47 mc-powerpc :conv/conv.h mc-include.c mc-code-powerpc.o $(COMPLIB) $(CONVERTER)
440
a531bbf572e3 regression test (case, float, long long)
kono
parents: 438
diff changeset
48 $(CC) $(LDFLAGS) -g mc-code-powerpc.o $(COMPLIB) $(CONVERTER) -o $@
94
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
49
691
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
50 mc-ia32 :conv/conv.h mc-include.c mc-code-ia32.o $(COMPLIB) $(CONVERTER)
440
a531bbf572e3 regression test (case, float, long long)
kono
parents: 438
diff changeset
51 $(CC) $(LDFLAGS) -g mc-code-ia32.o $(COMPLIB) $(CONVERTER) -o $@
61
8ffb8ca3fe34 separation of architecture dependent part.
kono
parents: 59
diff changeset
52
691
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
53 mc-mips :conv/conv.h mc-include.c mc-code-mips.o $(COMPLIB) $(CONVERTER)
440
a531bbf572e3 regression test (case, float, long long)
kono
parents: 438
diff changeset
54 $(CC) $(LDFLAGS) -g mc-code-mips.o $(COMPLIB) $(CONVERTER) -o $@
130
fea1b499d47b fix register var save
kono
parents: 127
diff changeset
55
691
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
56 mc-arm :conv/conv.h mc-include.c mc-code-arm.o $(COMPLIB) $(CONVERTER)
440
a531bbf572e3 regression test (case, float, long long)
kono
parents: 438
diff changeset
57 $(CC) $(LDFLAGS) -g mc-code-arm.o $(COMPLIB) $(CONVERTER) -o $@
383
9a3d897d58fd ARM continue...
kono
parents: 366
diff changeset
58
691
25115b50d033 *** empty log message ***
kono
parents: 690
diff changeset
59 mc-spu :conv/conv.h mc-include.c mc-code-spu.o $(COMPLIB) $(CONVERTER)
666
7c42cf329666 *** empty log message ***
kono
parents: 664
diff changeset
60 $(CC) $(LDFLAGS) -g mc-code-spu.o $(COMPLIB) $(CONVERTER) -o $@
7c42cf329666 *** empty log message ***
kono
parents: 664
diff changeset
61
466
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
62 conv/conv.h: conv_func.tbl tools/conv_func.pl
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
63 perl tools/conv_func.pl
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
64 conv/convdef.h: conv_func.tbl tools/conv_func.pl
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
65 perl tools/conv_func.pl
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
66 conv/null.c: conv_func.tbl tools/conv_func.pl
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
67 perl tools/conv_func.pl
67
254a0c576114 argument type list
kono
parents: 66
diff changeset
68
861
c005a392e27e fix for Marvaricks
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 836
diff changeset
69 mc-include.c: stdio.h
615
2dee957ef988 test case on undeclared name
kono
parents: 609
diff changeset
70 perl tools/find-gcc-include-path -l $(CC) > mc-include.c
2dee957ef988 test case on undeclared name
kono
parents: 609
diff changeset
71
861
c005a392e27e fix for Marvaricks
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 836
diff changeset
72 stdio.h:
c005a392e27e fix for Marvaricks
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 836
diff changeset
73 perl tools/find-gcc-include-path -s $(CC) > stdio.h
c005a392e27e fix for Marvaricks
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 836
diff changeset
74
166
9e55cc5551fb *** empty log message ***
kono
parents: 161
diff changeset
75 mc.h-new:
466
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
76 perl tools/mc-h-renum.pl mc.h > mc.h.1
166
9e55cc5551fb *** empty log message ***
kono
parents: 161
diff changeset
77 mv mc.h.1 mc.h
9e55cc5551fb *** empty log message ***
kono
parents: 161
diff changeset
78
172
096559f07a70 some check
kono
parents: 166
diff changeset
79 check-all: check-all-c check-all-code
096559f07a70 some check
kono
parents: 166
diff changeset
80
096559f07a70 some check
kono
parents: 166
diff changeset
81 check-all-c:
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
82 make check TARGET=test/basic
550
df60b120675d *** empty log message ***
kono
parents: 545
diff changeset
83 make check-inline TARGET=test/basic
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
84 make check TARGET=test/call
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
85 make check TARGET=test/fact0
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
86 make check TARGET=test/float
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
87 make check TARGET=test/ifdef
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
88 make check TARGET=test/int
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
89 make check TARGET=test/macro
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
90 make check TARGET=test/regargs
172
096559f07a70 some check
kono
parents: 166
diff changeset
91 make check TARGET=test/short
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
92 make check TARGET=test/simp
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
93 make check TARGET=test/simp0
249
8313c965c0e2 *** empty log message ***
kono
parents: 245
diff changeset
94 make check TARGET=test/simp1
172
096559f07a70 some check
kono
parents: 166
diff changeset
95 make check TARGET=test/static
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
96 make check-inline TARGET=test/static
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
97 make check TARGET=test/tmp
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
98 make check TARGET=test/tmp10
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
99 make check TARGET=test/tmp11
161
cc2fc5c0dfe5 struct field fix
kono
parents: 158
diff changeset
100 make check TARGET=test/tmp12
336
d488b72254fb bit-field done.
kono
parents: 328
diff changeset
101 make check TARGET=test/tmp5
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
102 make check TARGET=test/tmp7
701
bf4fd39737e9 fix static in parse mode
kono
parents: 691
diff changeset
103 make check-inline TARGET=test/tmp7
664
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
104 make check TARGET=test/tmp8
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
105 make check TARGET=test/tmp9
176
kono
parents: 172
diff changeset
106 make check TARGET=test/enum
214
4f459364c334 *** empty log message ***
kono
parents: 213
diff changeset
107 make check TARGET=test/obsf
444
8bec605d1701 small sized struct
kono
parents: 440
diff changeset
108 make check TARGET=test/obsf2
221
ceae585186d9 *** empty log message ***
kono
parents: 214
diff changeset
109 make check TARGET=test/long
307
fda28752d301 stdarg (varargs done... PowerPC, IA32 checked)
kono
parents: 298
diff changeset
110 make check TARGET=test/tstdarg
311
38c9976863b7 swtich list fix. macro fix.
kono
parents: 310
diff changeset
111 make check TARGET=test/switch
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
112 make check-inline TARGET=test/switch
310
5ae5857ded2c struct partial init done.
kono
parents: 307
diff changeset
113 make check TARGET=test/strinit
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
114 make check-inline TARGET=test/strinit
221
ceae585186d9 *** empty log message ***
kono
parents: 214
diff changeset
115 make check TARGET=test/code-gen-all
550
df60b120675d *** empty log message ***
kono
parents: 545
diff changeset
116 make check-inline TARGET=test/code-gen-all
338
7fe7ce0a791f bit-field done for IA32, PowerPC, MIPS.
kono
parents: 336
diff changeset
117 make check TARGET=test/bitfield
7fe7ce0a791f bit-field done for IA32, PowerPC, MIPS.
kono
parents: 336
diff changeset
118 make check TARGET=test/bitfield1
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
119 make check-inline TARGET=test/bitfield1
353
41ed77cb9c67 name table reogranization, extendable cheap done.
kono
parents: 338
diff changeset
120 make check TARGET=test/cext
400
a9427845ca4c ARM test/basic test pass.
kono
parents: 387
diff changeset
121 make check TARGET=test/const
438
626d705471d5 Unexecuted code in conditional. Lazy jmp code generation.
kono
parents: 420
diff changeset
122 make check TARGET=test/void_code
494
07fdc5bf5e96 *** empty log message ***
kono
parents: 491
diff changeset
123 make check TARGET=test/putenemy
453
1e5ca85d3f97 inline on going...
kono
parents: 449
diff changeset
124 make check TARGET=test/inline
640
04211a2cf227 *** empty log message ***
kono
parents: 615
diff changeset
125 make check TARGET=test/ps2
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
126 make check-inline TARGET=test/ps2
713
88e364604533 *** empty log message ***
kono
parents: 709
diff changeset
127 make check TARGET=test/offset
640
04211a2cf227 *** empty log message ***
kono
parents: 615
diff changeset
128 make check TARGET=test/multi
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
129 make check-inline TARGET=test/multi
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
130 make check TARGET=test/comp
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
131 make check-inline TARGET=test/comp
366
2d510935c37d *** empty log message ***
kono
parents: 365
diff changeset
132 # make check TARGET=test/scope STDFLAG="-std=gnu99"
550
df60b120675d *** empty log message ***
kono
parents: 545
diff changeset
133 # make check-inline TARGET=test/scope STDFLAG="-std=gnu99"
172
096559f07a70 some check
kono
parents: 166
diff changeset
134 #MK =-make
096559f07a70 some check
kono
parents: 166
diff changeset
135 MK=
096559f07a70 some check
kono
parents: 166
diff changeset
136 check-all-code:
096559f07a70 some check
kono
parents: 166
diff changeset
137 make check-code$(MK) TARGET=test/arg
096559f07a70 some check
kono
parents: 166
diff changeset
138 make check-code$(MK) TARGET=test/conv
096559f07a70 some check
kono
parents: 166
diff changeset
139 make check-code$(MK) TARGET=test/conv1
096559f07a70 some check
kono
parents: 166
diff changeset
140 make check-code$(MK) TARGET=test/fact-a
096559f07a70 some check
kono
parents: 166
diff changeset
141 make check-code$(MK) TARGET=test/fact
096559f07a70 some check
kono
parents: 166
diff changeset
142 make check-code$(MK) TARGET=test/goto
449
c55363eff5e5 parallel assignment (modify not completed)
kono
parents: 445
diff changeset
143 make check-code$(MK) TARGET=test/test1
664
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
144 make check-code$(MK) TARGET=test/test2
477
308192c08e0a *** empty log message ***
kono
parents: 467
diff changeset
145 make check-code$(MK) TARGET=test/tmpa
449
c55363eff5e5 parallel assignment (modify not completed)
kono
parents: 445
diff changeset
146 make check-code$(MK) TARGET=test/tmp1
172
096559f07a70 some check
kono
parents: 166
diff changeset
147 make check-code$(MK) TARGET=test/tmp2
096559f07a70 some check
kono
parents: 166
diff changeset
148 make check-code$(MK) TARGET=test/tmp4
449
c55363eff5e5 parallel assignment (modify not completed)
kono
parents: 445
diff changeset
149 make check-code$(MK) TARGET=test/tmp6
664
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
150 make check-code$(MK) TARGET=test/tmpb
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
151 make check-code-inline TARGET=test/tmpb
366
2d510935c37d *** empty log message ***
kono
parents: 365
diff changeset
152 make check-code$(MK) TARGET=test/scope
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
153 make check-code-inline TARGET=test/scope
725
3f1f6c0610c1 goto with enviornment syntax changed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 714
diff changeset
154 # make check-code$(MK) TARGET=test/throw
545
2f577690bcfb *** empty log message ***
kono
parents: 537
diff changeset
155 make check-code$(MK) TARGET=test/too-long-argument
172
096559f07a70 some check
kono
parents: 166
diff changeset
156
702
8eadf0db2970 *** empty log message ***
kono
parents: 701
diff changeset
157 check-nkf: mc
191
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
158 ( cd nkf203; $(CC) -g -o nkf1 nkf.c utf8tbl.c )
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
159 ( cd nkf203; ../mc-$(ARCH) nkf.c utf8tbl.c )
191
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
160 ( cd nkf203; $(CC) -g -o nkf nkf.s utf8tbl.s )
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
161 ( cd nkf203; perl test.pl )
8646a4a9cde9 *** empty log message ***
kono
parents: 186
diff changeset
162
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
163 # -./$(MC) -Itest/ $(TARGET).c
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
164
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 550
diff changeset
165 check: mc $(MC) $(TARGET).c
868
c55337499f96 remove warnings and error from test
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 862
diff changeset
166 -$(CC) $(CFLAGS1) $(STDFLAG) $(TARGET).c -o b.out $(MLIB) -Wno-literal-conversion -Wno-implicit-function-declaration -Wno-implicit-int \
882
3976dc54ec3d fix Makefile
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 868
diff changeset
167 -Wno-incompatible-pointer-types -Wno-int-conversion -Wno-return-type -Wno-bitfield-constant-conversion -Wno-tautological-compare -Wno-shift-overflow \
3976dc54ec3d fix Makefile
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 868
diff changeset
168 -Wno-unused-value
123
5f180dc8d84e intel fix.
kono
parents: 122
diff changeset
169 -./b.out > $(TARGET).gcc.out
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
170 -./$(MC) $(MCFLAG) $(TARGET).c
466
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
171 -$(CC) $(TARGET).s $(MLIB)
123
5f180dc8d84e intel fix.
kono
parents: 122
diff changeset
172 -./a.out > $(TARGET).$(MC).out
225
8675ea3d2c7f *** empty log message ***
kono
parents: 224
diff changeset
173 -diff $(TARGET).gcc.out $(TARGET).$(MC).out
118
07b91b625f84 assignment optimization
kono
parents: 109
diff changeset
174
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 550
diff changeset
175 check-inline: mc $(MC) $(TARGET).c
868
c55337499f96 remove warnings and error from test
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 862
diff changeset
176 -$(CC) $(CFLAGS1) $(STDFLAG) $(TARGET).c -o b.out $(MLIB) -Wno-literal-conversion -Wno-implicit-function-declaration -Wno-implicit-int \
882
3976dc54ec3d fix Makefile
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 868
diff changeset
177 -Wno-incompatible-pointer-types -Wno-int-conversion -Wno-return-type -Wno-bitfield-constant-conversion -Wno-tautological-compare -Wno-shift-overflow \
3976dc54ec3d fix Makefile
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 868
diff changeset
178 -Wno-unused-value
550
df60b120675d *** empty log message ***
kono
parents: 545
diff changeset
179 -./b.out > $(TARGET).gcc.out
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
180 -./$(MC) $(MCFLAG) -DINLINE=inline $(TARGET).c
550
df60b120675d *** empty log message ***
kono
parents: 545
diff changeset
181 -$(CC) $(TARGET).s $(MLIB)
df60b120675d *** empty log message ***
kono
parents: 545
diff changeset
182 -./a.out > $(TARGET).$(MC).out
df60b120675d *** empty log message ***
kono
parents: 545
diff changeset
183 -diff $(TARGET).gcc.out $(TARGET).$(MC).out
df60b120675d *** empty log message ***
kono
parents: 545
diff changeset
184
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 550
diff changeset
185 check-code: mc $(MC)
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
186 -./$(MC) $(MCFLAG) $(TARGET).c
466
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
187 -$(CC) $(TARGET).s $(MLIB)
172
096559f07a70 some check
kono
parents: 166
diff changeset
188 -./a.out > $(TARGET).$(MC).out
096559f07a70 some check
kono
parents: 166
diff changeset
189 -diff $(TARGET).code-out $(TARGET).$(MC).out
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
190 check-code-inline: mc $(MC)
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
191 -./$(MC) $(MCFLAG) -DINLINE=inline $(TARGET).c
705
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
192 -$(CC) $(TARGET).s $(MLIB)
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
193 -./a.out > $(TARGET).$(MC).out
0554b7f985ee parse mode done.
kono
parents: 704
diff changeset
194 -diff $(TARGET).code-out $(TARGET).$(MC).out
551
73ebe9d82a9c inline (scope.c/GNU extension) continue...
kono
parents: 550
diff changeset
195 check-code-make: mc $(MC)
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
196 -./$(MC) $(MCFLAG) $(TARGET).c
466
7c3d8237b625 *** empty log message ***
kono
parents: 453
diff changeset
197 -$(CC) $(TARGET).s $(MLIB)
172
096559f07a70 some check
kono
parents: 166
diff changeset
198 -./a.out > $(TARGET).code-out
096559f07a70 some check
kono
parents: 166
diff changeset
199
676
5e71527f9fd6 *** empty log message ***
kono
parents: 669
diff changeset
200 check-flip: mc $(MC)
5e71527f9fd6 *** empty log message ***
kono
parents: 669
diff changeset
201 -$(CC) -DFLIP -c test/basic2.c
5e71527f9fd6 *** empty log message ***
kono
parents: 669
diff changeset
202 -$(CC) basic2.o test/basic2.c
5e71527f9fd6 *** empty log message ***
kono
parents: 669
diff changeset
203 ./a.out
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
204 -./$(MC) test/basic2.c
676
5e71527f9fd6 *** empty log message ***
kono
parents: 669
diff changeset
205 -$(CC) test/basic2.s -DFLIP test/basic2.c
5e71527f9fd6 *** empty log message ***
kono
parents: 669
diff changeset
206 ./a.out
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
207 -./$(MC) -DFLIP test/basic2.c
676
5e71527f9fd6 *** empty log message ***
kono
parents: 669
diff changeset
208 -$(CC) test/basic2.s test/basic2.c
5e71527f9fd6 *** empty log message ***
kono
parents: 669
diff changeset
209 ./a.out
5e71527f9fd6 *** empty log message ***
kono
parents: 669
diff changeset
210
245
8a72b0afccfc *** empty log message ***
kono
parents: 225
diff changeset
211 test/code-gen-all.c: test/code-gen.pl test/code-gen.c
8a72b0afccfc *** empty log message ***
kono
parents: 225
diff changeset
212 perl test/code-gen.pl < test/code-gen.c > test/code-gen-all.c
8a72b0afccfc *** empty log message ***
kono
parents: 225
diff changeset
213
491
a379da780856 cond signed/unsigned
kono
parents: 477
diff changeset
214 incpri:
a379da780856 cond signed/unsigned
kono
parents: 477
diff changeset
215 perl tools/incpri.pl test/*.c
a379da780856 cond signed/unsigned
kono
parents: 477
diff changeset
216
904
6f9513a6a37f Linux i64 error
kono
parents: 882
diff changeset
217 tags: # tags-$(ARCH)
186
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
218
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
219 tags-$(ARCH):
904
6f9513a6a37f Linux i64 error
kono
parents: 882
diff changeset
220 -ctags -w mc.h mc-code.h mc-code-$(ARCH).c mc-codegen.c mc-codegen.h \
714
5fad4649bed8 *** empty log message ***
kono
parents: 713
diff changeset
221 mc-parse.h mc-tree.c mc-inline.h mc-switch.h \
5fad4649bed8 *** empty log message ***
kono
parents: 713
diff changeset
222 mc-macro.h mc-macro.c \
186
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
223 conv/c.c conv/c.h \
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
224 conv/conv.h conv/convdef.h
6391432ca002 nkf binary fix
kono
parents: 176
diff changeset
225
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
226 tar :
d35df41eac69 Initial revision
kono
parents:
diff changeset
227 make clean
d35df41eac69 Initial revision
kono
parents:
diff changeset
228 tar cBf - . | gzip > ../comp.tgz
d35df41eac69 Initial revision
kono
parents:
diff changeset
229
664
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
230 depend : mc.h mc-include.c
615
2dee957ef988 test case on undeclared name
kono
parents: 609
diff changeset
231 makedepend -I$(GCC_INCLUDE) mc-code-ia32.c mc-code.h mc-codegen.c mc-codegen.h \
664
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
232 mc-parse.c mc-tree.c mc-switch.c mc-switch.h mc.h \
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
233 mc-inline.c mc-macro.c mc-macro.h mc-parse.h \
67
254a0c576114 argument type list
kono
parents: 66
diff changeset
234 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
235 conv/cbc2c.h conv/conv.h conv/convdef.h conv/null.c conv/null.h \
664
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
236 mc-code-arm.c \
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
237 mc-code-powerpc.c \
ec1bac997e50 fix 387 floating point stack overflow
kono
parents: 662
diff changeset
238 mc-code-mips.c
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
239
d35df41eac69 Initial revision
kono
parents:
diff changeset
240 clean :
861
c005a392e27e fix for Marvaricks
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 836
diff changeset
241 -rm -rf mc mc-spu 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 mc-include.c *.dSYM stdio.h
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
242
453
1e5ca85d3f97 inline on going...
kono
parents: 449
diff changeset
243 mc1 : b00.s b01.s mc-codegen.o mc-tree.o mc-switch.o mc-macro.o mc-inline.o $(CONVERTER)
1e5ca85d3f97 inline on going...
kono
parents: 449
diff changeset
244 $(CC) -g -o $@ $(PRINTF) b00.s b01.s mc-codegen.o mc-tree.o mc-switch.o mc-macro.o mc-inline.o $(CONVERTER)
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
245
453
1e5ca85d3f97 inline on going...
kono
parents: 449
diff changeset
246 mc2 : b00.s b01.s b02.s b03.s mc-macro.o mc-inline.o $(CONVERTER)
1e5ca85d3f97 inline on going...
kono
parents: 449
diff changeset
247 $(CC) -g -o $@ $(PRINTF) b00.s b01.s b02.s b03.s b04.s mc-macro.o mc-inline.o $(CONVERTER)
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
248
94
1ad7045741a7 float dbinop fix
kono
parents: 93
diff changeset
249 b00.s : mc-parse.c $(MC)
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
250 ./$(MC) $(MCFLAG) -ob00.s mc-parse.c
109
e09f9de6f5d3 *** empty log message ***
kono
parents: 94
diff changeset
251 b01.s : $(CODE) $(MC)
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
252 ./$(MC) $(MCFLAG) -ob01.s $(CODE)
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
253 b02.s : mc-codegen.c $(MC)
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
254 ./$(MC) $(MCFLAG) -ob02.s mc-codegen.c
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
255 b03.s : mc-tree.c $(MC)
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
256 ./$(MC) $(MCFLAG) -ob03.s mc-tree.c
298
4ccacae1d2e6 switch index level=1 odd situation.
kono
parents: 297
diff changeset
257 b04.s : mc-switch.c $(MC)
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
258 ./$(MC) $(MCFLAG) -ob04.s mc-switch.c
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
259
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
260 b10.s : mc-parse.c mc1
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
261 ./mc1 $(MCFLAG) -ob10.s mc-parse.c
109
e09f9de6f5d3 *** empty log message ***
kono
parents: 94
diff changeset
262 b11.s : $(CODE) $(PRINTF) mc1
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
263 ./mc1 $(MCFLAG) -ob11.s $(CODE)
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
264 b12.s : mc-codegen.c mc1
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
265 ./mc1 $(MCFLAG) -ob12.s mc-codegen.c
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
266 b13.s : mc-tree.c mc1
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
267 ./mc1 $(MCFLAG) -ob13.s mc-tree.c
298
4ccacae1d2e6 switch index level=1 odd situation.
kono
parents: 297
diff changeset
268 b14.s : mc-switch.c mc1
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
269 ./mc1 $(MCFLAG) -ob14.s mc-switch.c
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
270
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
271 b20.s : mc-parse.c mc2
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
272 ./mc2 $(MCFLAG) -ob20.s mc-parse.c
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
273 b21.s : $(CODE) $(PRINTF) mc2
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
274 ./mc2 $(MCFLAG) -ob21.s $(CODE)
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
275 b22.s : mc-codegen.c mc2
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
276 ./mc2 $(MCFLAG) -ob22.s mc-codegen.c
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
277 b23.s : mc-tree.c mc2
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
278 ./mc2 $(MCFLAG) -ob23.s mc-tree.c
298
4ccacae1d2e6 switch index level=1 odd situation.
kono
parents: 297
diff changeset
279 b24.s : mc-switch.c mc1
862
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents: 861
diff changeset
280 ./mc2 $(MCFLAG) -ob24.s mc-switch.c
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
281
298
4ccacae1d2e6 switch index level=1 odd situation.
kono
parents: 297
diff changeset
282 diff : b00.s b01.s b02.s b03.s b04.s b10.s b11.s b12.s b13.s b14.s
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
283 -diff b00.s b10.s
d35df41eac69 Initial revision
kono
parents:
diff changeset
284 -diff b01.s b11.s
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
285 -diff b02.s b12.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
286 -diff b03.s b13.s
298
4ccacae1d2e6 switch index level=1 odd situation.
kono
parents: 297
diff changeset
287 -diff b04.s b14.s
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
288
298
4ccacae1d2e6 switch index level=1 odd situation.
kono
parents: 297
diff changeset
289 diff2 : b00.s b01.s b02.s b03.s b04.s b20.s b21.s b22.s b23.s b24.s
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
290 -diff b00.s b20.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
291 -diff b01.s b21.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
292 -diff b02.s b22.s
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
293 -diff b03.s b23.s
298
4ccacae1d2e6 switch index level=1 odd situation.
kono
parents: 297
diff changeset
294 -diff b04.s b24.s
140
aac62d1e30a6 fix minor syntax error
kono
parents: 138
diff changeset
295
67
254a0c576114 argument type list
kono
parents: 66
diff changeset
296
0
d35df41eac69 Initial revision
kono
parents:
diff changeset
297 # DO NOT DELETE