summaryrefslogtreecommitdiffhomepage
path: root/xcode/mruby.xcodeproj/project.pbxproj
blob: 42d2eb87c37b70c1473f7617530899fa7d9faa34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		8844359B157730E1007F95A4 /* mrbtest.c in Sources */ = {isa = PBXBuildFile; fileRef = 8844359A157730DB007F95A4 /* mrbtest.c */; };
		8844359C15773120007F95A4 /* libmruby.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8844353E1576F1A3007F95A4 /* libmruby.a */; };
		8844359F15773215007F95A4 /* driver.c in Sources */ = {isa = PBXBuildFile; fileRef = 8844356415772EF0007F95A4 /* driver.c */; };
		88760A97157591E100113BFB /* mrbc.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34C4156C997100F12AC7 /* mrbc.c */; };
		88760AEA15759F9700113BFB /* y.tab.c in Sources */ = {isa = PBXBuildFile; fileRef = 88EDC30215757CB40098CF0D /* y.tab.c */; };
		88760AEB15759F9700113BFB /* array.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34D4156C998200F12AC7 /* array.c */; };
		88760AEC15759F9700113BFB /* ascii.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34D5156C998200F12AC7 /* ascii.c */; };
		88760AED15759F9700113BFB /* cdump.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34D6156C998200F12AC7 /* cdump.c */; };
		88760AEE15759F9700113BFB /* class.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34D7156C998200F12AC7 /* class.c */; };
		88760AEF15759F9700113BFB /* codegen.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34D9156C998200F12AC7 /* codegen.c */; };
		88760AF015759F9700113BFB /* compar.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34DA156C998200F12AC7 /* compar.c */; };
		88760AF115759F9700113BFB /* crc.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34DB156C998200F12AC7 /* crc.c */; };
		88760AF215759F9700113BFB /* dump.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34DC156C998200F12AC7 /* dump.c */; };
		88760AF315759F9700113BFB /* encoding.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34DD156C998200F12AC7 /* encoding.c */; };
		88760AF415759F9700113BFB /* enum.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34DF156C998200F12AC7 /* enum.c */; };
		88760AF515759F9700113BFB /* error.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34E0156C998200F12AC7 /* error.c */; };
		88760AF615759F9700113BFB /* etc.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34E2156C998200F12AC7 /* etc.c */; };
		88760AF715759F9700113BFB /* gc.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34E5156C998200F12AC7 /* gc.c */; };
		88760AF815759F9700113BFB /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34E7156C998200F12AC7 /* hash.c */; };
		88760AF915759F9700113BFB /* init.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34E8156C998200F12AC7 /* init.c */; };
		88760AFA15759F9700113BFB /* init_ext.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34EA156C998200F12AC7 /* init_ext.c */; };
		88760AFB15759F9700113BFB /* kernel.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34EB156C998200F12AC7 /* kernel.c */; };
		88760AFC15759F9700113BFB /* load.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34EE156C998200F12AC7 /* load.c */; };
		88760AFD15759F9700113BFB /* math.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34F0156C998200F12AC7 /* math.c */; };
		88760AFE15759F9700113BFB /* numeric.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34F4156C998200F12AC7 /* numeric.c */; };
		88760AFF15759F9700113BFB /* object.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34F5156C998200F12AC7 /* object.c */; };
		88760B0015759F9700113BFB /* pool.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34F9156C998200F12AC7 /* pool.c */; };
		88760B0115759F9700113BFB /* print.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34FA156C998200F12AC7 /* print.c */; };
		88760B0215759F9700113BFB /* proc.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34FB156C998200F12AC7 /* proc.c */; };
		88760B0315759F9700113BFB /* range.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34FC156C998200F12AC7 /* range.c */; };
		88760B0415759F9700113BFB /* re.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34FD156C998200F12AC7 /* re.c */; };
		88760B0515759F9700113BFB /* regcomp.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34FF156C998200F12AC7 /* regcomp.c */; };
		88760B0615759F9700113BFB /* regenc.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3500156C998200F12AC7 /* regenc.c */; };
		88760B0715759F9700113BFB /* regerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3502156C998200F12AC7 /* regerror.c */; };
		88760B0815759F9700113BFB /* regexec.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3504156C998200F12AC7 /* regexec.c */; };
		88760B0915759F9700113BFB /* regparse.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3506156C998200F12AC7 /* regparse.c */; };
		88760B0A15759F9700113BFB /* sprintf.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3508156C998200F12AC7 /* sprintf.c */; };
		88760B0B15759F9700113BFB /* st.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3509156C998200F12AC7 /* st.c */; };
		88760B0C15759F9700113BFB /* state.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF350B156C998200F12AC7 /* state.c */; };
		88760B0D15759F9700113BFB /* string.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF350C156C998200F12AC7 /* string.c */; };
		88760B0E15759F9700113BFB /* struct.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF350D156C998200F12AC7 /* struct.c */; };
		88760B0F15759F9700113BFB /* symbol.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF350E156C998200F12AC7 /* symbol.c */; };
		88760B1015759F9700113BFB /* time.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF350F156C998200F12AC7 /* time.c */; };
		88760B1115759F9700113BFB /* transcode.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3510156C998200F12AC7 /* transcode.c */; };
		88760B1215759F9700113BFB /* unicode.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3512156C998200F12AC7 /* unicode.c */; };
		88760B1315759F9700113BFB /* us_ascii.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3513156C998200F12AC7 /* us_ascii.c */; };
		88760B1415759F9700113BFB /* utf_8.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3514156C998200F12AC7 /* utf_8.c */; };
		88760B1515759F9700113BFB /* variable.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3515156C998200F12AC7 /* variable.c */; };
		88760B1615759F9700113BFB /* vm.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF3518156C998200F12AC7 /* vm.c */; };
		88760B1915769C3E00113BFB /* libmruby_core.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 88760B1715769BE400113BFB /* libmruby_core.a */; };
		88760B1D15769CEE00113BFB /* mrblib.c in Sources */ = {isa = PBXBuildFile; fileRef = 88760B1C15769CEE00113BFB /* mrblib.c */; };
		88760B1E15769D2000113BFB /* libmruby_core.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 88760B1715769BE400113BFB /* libmruby_core.a */; };
		88760B3015769E8D00113BFB /* mruby.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34C8156C997100F12AC7 /* mruby.c */; };
		88760B3115769E9400113BFB /* libmruby.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 88760B1F15769E2D00113BFB /* libmruby.a */; };
		88760B3815769F3000113BFB /* libmruby.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 88760B1F15769E2D00113BFB /* libmruby.a */; };
		88760B3E15769F5000113BFB /* mirb.c in Sources */ = {isa = PBXBuildFile; fileRef = 88BF34C0156C997100F12AC7 /* mirb.c */; };
		88760B811576A33100113BFB /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 88760B7F1576A33100113BFB /* InfoPlist.strings */; };
		88760B8C1576A37600113BFB /* mrbconf.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3558156C99B200F12AC7 /* mrbconf.h */; };
		88760B8D1576A37600113BFB /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF355A156C99B200F12AC7 /* array.h */; };
		88760B8E1576A37600113BFB /* cdump.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF355B156C99B200F12AC7 /* cdump.h */; };
		88760B8F1576A37600113BFB /* class.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF355C156C99B200F12AC7 /* class.h */; };
		88760B901576A37600113BFB /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF355D156C99B200F12AC7 /* compile.h */; };
		88760B911576A37600113BFB /* data.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF355E156C99B200F12AC7 /* data.h */; };
		88760B921576A37600113BFB /* dump.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF355F156C99B200F12AC7 /* dump.h */; };
		88760B931576A37600113BFB /* hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3560156C99B200F12AC7 /* hash.h */; };
		88760B941576A37600113BFB /* irep.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3561156C99B200F12AC7 /* irep.h */; };
		88760B951576A37600113BFB /* khash.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3562156C99B200F12AC7 /* khash.h */; };
		88760B961576A37600113BFB /* numeric.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3563156C99B200F12AC7 /* numeric.h */; };
		88760B971576A37600113BFB /* object.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3564156C99B200F12AC7 /* object.h */; };
		88760B981576A37600113BFB /* proc.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3565156C99B200F12AC7 /* proc.h */; };
		88760B991576A37600113BFB /* range.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3566156C99B200F12AC7 /* range.h */; };
		88760B9A1576A37600113BFB /* string.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3567156C99B200F12AC7 /* string.h */; };
		88760B9B1576A37600113BFB /* struct.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3568156C99B200F12AC7 /* struct.h */; };
		88760B9C1576A37600113BFB /* variable.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF3569156C99B200F12AC7 /* variable.h */; };
		88760B9D1576A37600113BFB /* mruby.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BF356A156C99B200F12AC7 /* mruby.h */; };
		88760B9F1576A4A200113BFB /* mrblib.c in Sources */ = {isa = PBXBuildFile; fileRef = 88760B1C15769CEE00113BFB /* mrblib.c */; };
		88760BA01576A4A700113BFB /* libmruby_core.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 88760B1715769BE400113BFB /* libmruby_core.a */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		8844359D15773126007F95A4 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 88BF3371156C992100F12AC7 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 88760AA115759B4F00113BFB;
			remoteInfo = ruby_lib;
		};
		88760ADE15759C1C00113BFB /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 88BF3371156C992100F12AC7 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 88760A8A157590F000113BFB;
			remoteInfo = mrbc;
		};
		88760B1A15769C5E00113BFB /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 88BF3371156C992100F12AC7 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 88760AE415759EFE00113BFB;
			remoteInfo = mruby_core;
		};
		88760B2E15769E8000113BFB /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 88BF3371156C992100F12AC7 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 88760AA115759B4F00113BFB;
			remoteInfo = ruby_lib;
		};
		88760B3415769F3000113BFB /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 88BF3371156C992100F12AC7 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 88760AA115759B4F00113BFB;
			remoteInfo = ruby_lib;
		};
		88760B891576A35C00113BFB /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 88BF3371156C992100F12AC7 /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 88760AA115759B4F00113BFB;
			remoteInfo = ruby_lib;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		8844353B1576F1A3007F95A4 /* libmruby_core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libmruby_core.a; sourceTree = BUILT_PRODUCTS_DIR; };
		8844353C1576F1A3007F95A4 /* mrbc */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mrbc; sourceTree = BUILT_PRODUCTS_DIR; };
		8844353E1576F1A3007F95A4 /* libmruby.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libmruby.a; sourceTree = BUILT_PRODUCTS_DIR; };
		8844353F1576F1A3007F95A4 /* mruby.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = mruby.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		8844356215772EF0007F95A4 /* assert.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = assert.rb; sourceTree = "<group>"; };
		8844356415772EF0007F95A4 /* driver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = driver.c; sourceTree = "<group>"; };
		8844356515772EF0007F95A4 /* init_mrbtest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = init_mrbtest.c; sourceTree = "<group>"; };
		8844356815772EF0007F95A4 /* argumenterror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = argumenterror.rb; sourceTree = "<group>"; };
		8844356915772EF0007F95A4 /* array.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = array.rb; sourceTree = "<group>"; };
		8844356A15772EF0007F95A4 /* bs_block.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = bs_block.rb; sourceTree = "<group>"; };
		8844356B15772EF0007F95A4 /* bs_literal.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = bs_literal.rb; sourceTree = "<group>"; };
		8844356C15772EF0007F95A4 /* class.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = class.rb; sourceTree = "<group>"; };
		8844356D15772EF0007F95A4 /* enumerable.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = enumerable.rb; sourceTree = "<group>"; };
		8844356E15772EF0007F95A4 /* exception.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = exception.rb; sourceTree = "<group>"; };
		8844356F15772EF0007F95A4 /* false.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = false.rb; sourceTree = "<group>"; };
		8844357015772EF0007F95A4 /* float.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = float.rb; sourceTree = "<group>"; };
		8844357115772EF0007F95A4 /* hash.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = hash.rb; sourceTree = "<group>"; };
		8844357215772EF0007F95A4 /* indexerror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = indexerror.rb; sourceTree = "<group>"; };
		8844357315772EF0007F95A4 /* integer.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = integer.rb; sourceTree = "<group>"; };
		8844357415772EF0007F95A4 /* kernel.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = kernel.rb; sourceTree = "<group>"; };
		8844357515772EF0007F95A4 /* literals.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = literals.rb; sourceTree = "<group>"; };
		8844357615772EF0007F95A4 /* localjumperror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = localjumperror.rb; sourceTree = "<group>"; };
		8844357715772EF0007F95A4 /* math.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = math.rb; sourceTree = "<group>"; };
		8844357815772EF0007F95A4 /* module.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = module.rb; sourceTree = "<group>"; };
		8844357915772EF0007F95A4 /* nameerror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = nameerror.rb; sourceTree = "<group>"; };
		8844357A15772EF0007F95A4 /* nil.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = nil.rb; sourceTree = "<group>"; };
		8844357B15772EF0007F95A4 /* nomethoderror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = nomethoderror.rb; sourceTree = "<group>"; };
		8844357C15772EF0007F95A4 /* numeric.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = numeric.rb; sourceTree = "<group>"; };
		8844357D15772EF0007F95A4 /* object.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = object.rb; sourceTree = "<group>"; };
		8844357E15772EF0007F95A4 /* proc.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = proc.rb; sourceTree = "<group>"; };
		8844357F15772EF0007F95A4 /* range.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = range.rb; sourceTree = "<group>"; };
		8844358015772EF0007F95A4 /* rangeerror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = rangeerror.rb; sourceTree = "<group>"; };
		8844358115772EF0007F95A4 /* regexperror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = regexperror.rb; sourceTree = "<group>"; };
		8844358215772EF0007F95A4 /* runtimeerror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = runtimeerror.rb; sourceTree = "<group>"; };
		8844358315772EF0007F95A4 /* standarderror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = standarderror.rb; sourceTree = "<group>"; };
		8844358415772EF0007F95A4 /* string.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = string.rb; sourceTree = "<group>"; };
		8844358515772EF0007F95A4 /* struct.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = struct.rb; sourceTree = "<group>"; };
		8844358615772EF0007F95A4 /* symbol.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = symbol.rb; sourceTree = "<group>"; };
		8844358715772EF0007F95A4 /* time.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = time.rb; sourceTree = "<group>"; };
		8844358815772EF0007F95A4 /* true.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = true.rb; sourceTree = "<group>"; };
		8844358915772EF0007F95A4 /* typeerror.rb */ = {isa = PBXFileReference; lastKnownFileType = text.script.ruby; path = typeerror.rb; sourceTree = "<group>"; };
		8844358F1577301B007F95A4 /* mrbtest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mrbtest; sourceTree = BUILT_PRODUCTS_DIR; };
		8844359A157730DB007F95A4 /* mrbtest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = mrbtest.c; sourceTree = "<group>"; };
		88760A9D1575991600113BFB /* mrbc */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; name = mrbc; path = build/mrbc; sourceTree = "<group>"; };
		88760B1715769BE400113BFB /* libmruby_core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = libmruby_core.a; path = build/lib/libmruby_core.a; sourceTree = "<group>"; };
		88760B1C15769CEE00113BFB /* mrblib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mrblib.c; sourceTree = "<group>"; };
		88760B1F15769E2D00113BFB /* libmruby.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = libmruby.a; path = build/lib/libmruby.a; sourceTree = "<group>"; };
		88760B2415769E6100113BFB /* mruby */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mruby; sourceTree = BUILT_PRODUCTS_DIR; };
		88760B3C15769F3000113BFB /* mirb */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mirb; sourceTree = BUILT_PRODUCTS_DIR; };
		88760B7E1576A33100113BFB /* mruby_fw-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "mruby_fw-Info.plist"; sourceTree = "<group>"; };
		88760B801576A33100113BFB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		88760B821576A33100113BFB /* mruby_fw-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "mruby_fw-Prefix.pch"; sourceTree = "<group>"; };
		88BF34C0156C997100F12AC7 /* mirb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mirb.c; sourceTree = "<group>"; };
		88BF34C4156C997100F12AC7 /* mrbc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mrbc.c; sourceTree = "<group>"; };
		88BF34C8156C997100F12AC7 /* mruby.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mruby.c; sourceTree = "<group>"; };
		88BF34CB156C997100F12AC7 /* xpcat.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xpcat.c; sourceTree = "<group>"; };
		88BF34D4156C998200F12AC7 /* array.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = array.c; sourceTree = "<group>"; };
		88BF34D5156C998200F12AC7 /* ascii.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ascii.c; sourceTree = "<group>"; };
		88BF34D6156C998200F12AC7 /* cdump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cdump.c; sourceTree = "<group>"; };
		88BF34D7156C998200F12AC7 /* class.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = class.c; sourceTree = "<group>"; };
		88BF34D9156C998200F12AC7 /* codegen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = codegen.c; sourceTree = "<group>"; };
		88BF34DA156C998200F12AC7 /* compar.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = compar.c; sourceTree = "<group>"; };
		88BF34DB156C998200F12AC7 /* crc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = crc.c; sourceTree = "<group>"; };
		88BF34DC156C998200F12AC7 /* dump.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dump.c; sourceTree = "<group>"; };
		88BF34DD156C998200F12AC7 /* encoding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = encoding.c; sourceTree = "<group>"; };
		88BF34DE156C998200F12AC7 /* encoding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = encoding.h; sourceTree = "<group>"; };
		88BF34DF156C998200F12AC7 /* enum.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = enum.c; sourceTree = "<group>"; };
		88BF34E0156C998200F12AC7 /* error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = error.c; sourceTree = "<group>"; };
		88BF34E1156C998200F12AC7 /* error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = error.h; sourceTree = "<group>"; };
		88BF34E2156C998200F12AC7 /* etc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = etc.c; sourceTree = "<group>"; };
		88BF34E5156C998200F12AC7 /* gc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = gc.c; sourceTree = "<group>"; };
		88BF34E6156C998200F12AC7 /* gc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gc.h; sourceTree = "<group>"; };
		88BF34E7156C998200F12AC7 /* hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = hash.c; sourceTree = "<group>"; };
		88BF34E8156C998200F12AC7 /* init.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = init.c; sourceTree = "<group>"; };
		88BF34EA156C998200F12AC7 /* init_ext.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = init_ext.c; sourceTree = "<group>"; };
		88BF34EB156C998200F12AC7 /* kernel.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = kernel.c; sourceTree = "<group>"; };
		88BF34EC156C998200F12AC7 /* keywords */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = keywords; sourceTree = "<group>"; };
		88BF34ED156C998200F12AC7 /* lex.def */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = lex.def; sourceTree = "<group>"; };
		88BF34EE156C998200F12AC7 /* load.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = load.c; sourceTree = "<group>"; };
		88BF34F0156C998200F12AC7 /* math.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = math.c; sourceTree = "<group>"; };
		88BF34F2156C998200F12AC7 /* name2ctype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = name2ctype.h; sourceTree = "<group>"; };
		88BF34F3156C998200F12AC7 /* node.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = node.h; sourceTree = "<group>"; };
		88BF34F4156C998200F12AC7 /* numeric.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = numeric.c; sourceTree = "<group>"; };
		88BF34F5156C998200F12AC7 /* object.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = object.c; sourceTree = "<group>"; };
		88BF34F6156C998200F12AC7 /* oniguruma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = oniguruma.h; sourceTree = "<group>"; };
		88BF34F7156C998200F12AC7 /* opcode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opcode.h; sourceTree = "<group>"; };
		88BF34F8156C998200F12AC7 /* parse.y */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.yacc; path = parse.y; sourceTree = "<group>"; };
		88BF34F9156C998200F12AC7 /* pool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pool.c; sourceTree = "<group>"; };
		88BF34FA156C998200F12AC7 /* print.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = print.c; sourceTree = "<group>"; };
		88BF34FB156C998200F12AC7 /* proc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = proc.c; sourceTree = "<group>"; };
		88BF34FC156C998200F12AC7 /* range.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = range.c; sourceTree = "<group>"; };
		88BF34FD156C998200F12AC7 /* re.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = re.c; sourceTree = "<group>"; };
		88BF34FE156C998200F12AC7 /* re.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = re.h; sourceTree = "<group>"; };
		88BF34FF156C998200F12AC7 /* regcomp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regcomp.c; sourceTree = "<group>"; };
		88BF3500156C998200F12AC7 /* regenc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regenc.c; sourceTree = "<group>"; };
		88BF3501156C998200F12AC7 /* regenc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regenc.h; sourceTree = "<group>"; };
		88BF3502156C998200F12AC7 /* regerror.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regerror.c; sourceTree = "<group>"; };
		88BF3503156C998200F12AC7 /* regex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regex.h; sourceTree = "<group>"; };
		88BF3504156C998200F12AC7 /* regexec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regexec.c; sourceTree = "<group>"; };
		88BF3505156C998200F12AC7 /* regint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regint.h; sourceTree = "<group>"; };
		88BF3506156C998200F12AC7 /* regparse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = regparse.c; sourceTree = "<group>"; };
		88BF3507156C998200F12AC7 /* regparse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regparse.h; sourceTree = "<group>"; };
		88BF3508156C998200F12AC7 /* sprintf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sprintf.c; sourceTree = "<group>"; };
		88BF3509156C998200F12AC7 /* st.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = st.c; sourceTree = "<group>"; };
		88BF350A156C998200F12AC7 /* st.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = st.h; sourceTree = "<group>"; };
		88BF350B156C998200F12AC7 /* state.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = state.c; sourceTree = "<group>"; };
		88BF350C156C998200F12AC7 /* string.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = string.c; sourceTree = "<group>"; };
		88BF350D156C998200F12AC7 /* struct.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = struct.c; sourceTree = "<group>"; };
		88BF350E156C998200F12AC7 /* symbol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = symbol.c; sourceTree = "<group>"; };
		88BF350F156C998200F12AC7 /* time.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = time.c; sourceTree = "<group>"; };
		88BF3510156C998200F12AC7 /* transcode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = transcode.c; sourceTree = "<group>"; };
		88BF3511156C998200F12AC7 /* transcode_data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = transcode_data.h; sourceTree = "<group>"; };
		88BF3512156C998200F12AC7 /* unicode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unicode.c; sourceTree = "<group>"; };
		88BF3513156C998200F12AC7 /* us_ascii.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = us_ascii.c; sourceTree = "<group>"; };
		88BF3514156C998200F12AC7 /* utf_8.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = utf_8.c; sourceTree = "<group>"; };
		88BF3515156C998200F12AC7 /* variable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = variable.c; sourceTree = "<group>"; };
		88BF3518156C998200F12AC7 /* vm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vm.c; sourceTree = "<group>"; };
		88BF3558156C99B200F12AC7 /* mrbconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mrbconf.h; sourceTree = "<group>"; };
		88BF355A156C99B200F12AC7 /* array.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = array.h; sourceTree = "<group>"; };
		88BF355B156C99B200F12AC7 /* cdump.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cdump.h; sourceTree = "<group>"; };
		88BF355C156C99B200F12AC7 /* class.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = class.h; sourceTree = "<group>"; };
		88BF355D156C99B200F12AC7 /* compile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = compile.h; sourceTree = "<group>"; };
		88BF355E156C99B200F12AC7 /* data.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = data.h; sourceTree = "<group>"; };
		88BF355F156C99B200F12AC7 /* dump.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dump.h; sourceTree = "<group>"; };
		88BF3560156C99B200F12AC7 /* hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hash.h; sourceTree = "<group>"; };
		88BF3561156C99B200F12AC7 /* irep.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = irep.h; sourceTree = "<group>"; };
		88BF3562156C99B200F12AC7 /* khash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = khash.h; sourceTree = "<group>"; };
		88BF3563156C99B200F12AC7 /* numeric.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = numeric.h; sourceTree = "<group>"; };
		88BF3564156C99B200F12AC7 /* object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = object.h; sourceTree = "<group>"; };
		88BF3565156C99B200F12AC7 /* proc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = proc.h; sourceTree = "<group>"; };
		88BF3566156C99B200F12AC7 /* range.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = range.h; sourceTree = "<group>"; };
		88BF3567156C99B200F12AC7 /* string.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = string.h; sourceTree = "<group>"; };
		88BF3568156C99B200F12AC7 /* struct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = struct.h; sourceTree = "<group>"; };
		88BF3569156C99B200F12AC7 /* variable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = variable.h; sourceTree = "<group>"; };
		88BF356A156C99B200F12AC7 /* mruby.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mruby.h; sourceTree = "<group>"; };
		88BF357E156C99C200F12AC7 /* array.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = array.rb; sourceTree = "<group>"; };
		88BF3580156C99C200F12AC7 /* compar.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = compar.rb; sourceTree = "<group>"; };
		88BF3581156C99C200F12AC7 /* enum.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = enum.rb; sourceTree = "<group>"; };
		88BF3582156C99C200F12AC7 /* error.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = error.rb; sourceTree = "<group>"; };
		88BF3583156C99C200F12AC7 /* hash.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = hash.rb; sourceTree = "<group>"; };
		88BF3584156C99C200F12AC7 /* init_mrblib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = init_mrblib.c; sourceTree = "<group>"; };
		88BF3585156C99C200F12AC7 /* kernel.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = kernel.rb; sourceTree = "<group>"; };
		88BF3587156C99C200F12AC7 /* numeric.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = numeric.rb; sourceTree = "<group>"; };
		88BF3588156C99C200F12AC7 /* print.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = print.rb; sourceTree = "<group>"; };
		88BF3589156C99C200F12AC7 /* range.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = range.rb; sourceTree = "<group>"; };
		88BF358A156C99C200F12AC7 /* string.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = string.rb; sourceTree = "<group>"; };
		88BF358B156C99C200F12AC7 /* struct.rb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.ruby; path = struct.rb; sourceTree = "<group>"; };
		88EDC30215757CB40098CF0D /* y.tab.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = y.tab.c; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		8844358C1577301B007F95A4 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				8844359C15773120007F95A4 /* libmruby.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760A88157590F000113BFB /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B1915769C3E00113BFB /* libmruby_core.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760A9F15759B4F00113BFB /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B1E15769D2000113BFB /* libmruby_core.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760AE215759EFE00113BFB /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760B2115769E6100113BFB /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B3115769E9400113BFB /* libmruby.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760B3715769F3000113BFB /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B3815769F3000113BFB /* libmruby.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760B701576A33100113BFB /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760BA01576A4A700113BFB /* libmruby_core.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		8844356115772EF0007F95A4 /* test */ = {
			isa = PBXGroup;
			children = (
				8844359A157730DB007F95A4 /* mrbtest.c */,
				8844356215772EF0007F95A4 /* assert.rb */,
				8844356415772EF0007F95A4 /* driver.c */,
				8844356515772EF0007F95A4 /* init_mrbtest.c */,
				8844356715772EF0007F95A4 /* t */,
			);
			name = test;
			path = ../test;
			sourceTree = "<group>";
		};
		8844356715772EF0007F95A4 /* t */ = {
			isa = PBXGroup;
			children = (
				8844356815772EF0007F95A4 /* argumenterror.rb */,
				8844356915772EF0007F95A4 /* array.rb */,
				8844356A15772EF0007F95A4 /* bs_block.rb */,
				8844356B15772EF0007F95A4 /* bs_literal.rb */,
				8844356C15772EF0007F95A4 /* class.rb */,
				8844356D15772EF0007F95A4 /* enumerable.rb */,
				8844356E15772EF0007F95A4 /* exception.rb */,
				8844356F15772EF0007F95A4 /* false.rb */,
				8844357015772EF0007F95A4 /* float.rb */,
				8844357115772EF0007F95A4 /* hash.rb */,
				8844357215772EF0007F95A4 /* indexerror.rb */,
				8844357315772EF0007F95A4 /* integer.rb */,
				8844357415772EF0007F95A4 /* kernel.rb */,
				8844357515772EF0007F95A4 /* literals.rb */,
				8844357615772EF0007F95A4 /* localjumperror.rb */,
				8844357715772EF0007F95A4 /* math.rb */,
				8844357815772EF0007F95A4 /* module.rb */,
				8844357915772EF0007F95A4 /* nameerror.rb */,
				8844357A15772EF0007F95A4 /* nil.rb */,
				8844357B15772EF0007F95A4 /* nomethoderror.rb */,
				8844357C15772EF0007F95A4 /* numeric.rb */,
				8844357D15772EF0007F95A4 /* object.rb */,
				8844357E15772EF0007F95A4 /* proc.rb */,
				8844357F15772EF0007F95A4 /* range.rb */,
				8844358015772EF0007F95A4 /* rangeerror.rb */,
				8844358115772EF0007F95A4 /* regexperror.rb */,
				8844358215772EF0007F95A4 /* runtimeerror.rb */,
				8844358315772EF0007F95A4 /* standarderror.rb */,
				8844358415772EF0007F95A4 /* string.rb */,
				8844358515772EF0007F95A4 /* struct.rb */,
				8844358615772EF0007F95A4 /* symbol.rb */,
				8844358715772EF0007F95A4 /* time.rb */,
				8844358815772EF0007F95A4 /* true.rb */,
				8844358915772EF0007F95A4 /* typeerror.rb */,
			);
			path = t;
			sourceTree = "<group>";
		};
		88760B3F1576A01C00113BFB /* Products */ = {
			isa = PBXGroup;
			children = (
				88760B1715769BE400113BFB /* libmruby_core.a */,
				88760A9D1575991600113BFB /* mrbc */,
				88760B1F15769E2D00113BFB /* libmruby.a */,
				88760B2415769E6100113BFB /* mruby */,
				88760B3C15769F3000113BFB /* mirb */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		88760B7C1576A33100113BFB /* mruby_fw */ = {
			isa = PBXGroup;
			children = (
				88760B7D1576A33100113BFB /* Supporting Files */,
			);
			path = mruby_fw;
			sourceTree = "<group>";
		};
		88760B7D1576A33100113BFB /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				88760B7E1576A33100113BFB /* mruby_fw-Info.plist */,
				88760B7F1576A33100113BFB /* InfoPlist.strings */,
				88760B821576A33100113BFB /* mruby_fw-Prefix.pch */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		88BF336F156C992100F12AC7 = {
			isa = PBXGroup;
			children = (
				88BF357D156C99C200F12AC7 /* mrblib */,
				88BF3557156C99B200F12AC7 /* include */,
				88BF34D3156C998200F12AC7 /* src */,
				88BF34BB156C997100F12AC7 /* tools */,
				88760B7C1576A33100113BFB /* mruby_fw */,
				8844356115772EF0007F95A4 /* test */,
				88760B3F1576A01C00113BFB /* Products */,
				8844353B1576F1A3007F95A4 /* libmruby_core.a */,
				8844353C1576F1A3007F95A4 /* mrbc */,
				8844358F1577301B007F95A4 /* mrbtest */,
				8844353E1576F1A3007F95A4 /* libmruby.a */,
				8844353F1576F1A3007F95A4 /* mruby.framework */,
			);
			sourceTree = "<group>";
		};
		88BF34BB156C997100F12AC7 /* tools */ = {
			isa = PBXGroup;
			children = (
				88BF34BD156C997100F12AC7 /* mirb */,
				88BF34C1156C997100F12AC7 /* mrbc */,
				88BF34C5156C997100F12AC7 /* mruby */,
				88BF34C9156C997100F12AC7 /* xpcat */,
			);
			name = tools;
			path = ../tools;
			sourceTree = "<group>";
		};
		88BF34BD156C997100F12AC7 /* mirb */ = {
			isa = PBXGroup;
			children = (
				88BF34C0156C997100F12AC7 /* mirb.c */,
			);
			path = mirb;
			sourceTree = "<group>";
		};
		88BF34C1156C997100F12AC7 /* mrbc */ = {
			isa = PBXGroup;
			children = (
				88BF34C4156C997100F12AC7 /* mrbc.c */,
			);
			path = mrbc;
			sourceTree = "<group>";
		};
		88BF34C5156C997100F12AC7 /* mruby */ = {
			isa = PBXGroup;
			children = (
				88BF34C8156C997100F12AC7 /* mruby.c */,
			);
			path = mruby;
			sourceTree = "<group>";
		};
		88BF34C9156C997100F12AC7 /* xpcat */ = {
			isa = PBXGroup;
			children = (
				88BF34CB156C997100F12AC7 /* xpcat.c */,
			);
			path = xpcat;
			sourceTree = "<group>";
		};
		88BF34D3156C998200F12AC7 /* src */ = {
			isa = PBXGroup;
			children = (
				88EDC30215757CB40098CF0D /* y.tab.c */,
				88BF34D4156C998200F12AC7 /* array.c */,
				88BF34D5156C998200F12AC7 /* ascii.c */,
				88BF34D6156C998200F12AC7 /* cdump.c */,
				88BF34D7156C998200F12AC7 /* class.c */,
				88BF34D9156C998200F12AC7 /* codegen.c */,
				88BF34DA156C998200F12AC7 /* compar.c */,
				88BF34DB156C998200F12AC7 /* crc.c */,
				88BF34DC156C998200F12AC7 /* dump.c */,
				88BF34DD156C998200F12AC7 /* encoding.c */,
				88BF34DE156C998200F12AC7 /* encoding.h */,
				88BF34DF156C998200F12AC7 /* enum.c */,
				88BF34E0156C998200F12AC7 /* error.c */,
				88BF34E1156C998200F12AC7 /* error.h */,
				88BF34E2156C998200F12AC7 /* etc.c */,
				88BF34E5156C998200F12AC7 /* gc.c */,
				88BF34E6156C998200F12AC7 /* gc.h */,
				88BF34E7156C998200F12AC7 /* hash.c */,
				88BF34E8156C998200F12AC7 /* init.c */,
				88BF34EA156C998200F12AC7 /* init_ext.c */,
				88BF34EB156C998200F12AC7 /* kernel.c */,
				88BF34EC156C998200F12AC7 /* keywords */,
				88BF34ED156C998200F12AC7 /* lex.def */,
				88BF34EE156C998200F12AC7 /* load.c */,
				88BF34F0156C998200F12AC7 /* math.c */,
				88BF34F2156C998200F12AC7 /* name2ctype.h */,
				88BF34F3156C998200F12AC7 /* node.h */,
				88BF34F4156C998200F12AC7 /* numeric.c */,
				88BF34F5156C998200F12AC7 /* object.c */,
				88BF34F6156C998200F12AC7 /* oniguruma.h */,
				88BF34F7156C998200F12AC7 /* opcode.h */,
				88BF34F8156C998200F12AC7 /* parse.y */,
				88BF34F9156C998200F12AC7 /* pool.c */,
				88BF34FA156C998200F12AC7 /* print.c */,
				88BF34FB156C998200F12AC7 /* proc.c */,
				88BF34FC156C998200F12AC7 /* range.c */,
				88BF34FD156C998200F12AC7 /* re.c */,
				88BF34FE156C998200F12AC7 /* re.h */,
				88BF34FF156C998200F12AC7 /* regcomp.c */,
				88BF3500156C998200F12AC7 /* regenc.c */,
				88BF3501156C998200F12AC7 /* regenc.h */,
				88BF3502156C998200F12AC7 /* regerror.c */,
				88BF3503156C998200F12AC7 /* regex.h */,
				88BF3504156C998200F12AC7 /* regexec.c */,
				88BF3505156C998200F12AC7 /* regint.h */,
				88BF3506156C998200F12AC7 /* regparse.c */,
				88BF3507156C998200F12AC7 /* regparse.h */,
				88BF3508156C998200F12AC7 /* sprintf.c */,
				88BF3509156C998200F12AC7 /* st.c */,
				88BF350A156C998200F12AC7 /* st.h */,
				88BF350B156C998200F12AC7 /* state.c */,
				88BF350C156C998200F12AC7 /* string.c */,
				88BF350D156C998200F12AC7 /* struct.c */,
				88BF350E156C998200F12AC7 /* symbol.c */,
				88BF350F156C998200F12AC7 /* time.c */,
				88BF3510156C998200F12AC7 /* transcode.c */,
				88BF3511156C998200F12AC7 /* transcode_data.h */,
				88BF3512156C998200F12AC7 /* unicode.c */,
				88BF3513156C998200F12AC7 /* us_ascii.c */,
				88BF3514156C998200F12AC7 /* utf_8.c */,
				88BF3515156C998200F12AC7 /* variable.c */,
				88BF3518156C998200F12AC7 /* vm.c */,
			);
			name = src;
			path = ../src;
			sourceTree = "<group>";
		};
		88BF3557156C99B200F12AC7 /* include */ = {
			isa = PBXGroup;
			children = (
				88BF3558156C99B200F12AC7 /* mrbconf.h */,
				88BF3559156C99B200F12AC7 /* mruby */,
				88BF356A156C99B200F12AC7 /* mruby.h */,
			);
			name = include;
			path = ../include;
			sourceTree = "<group>";
		};
		88BF3559156C99B200F12AC7 /* mruby */ = {
			isa = PBXGroup;
			children = (
				88BF355A156C99B200F12AC7 /* array.h */,
				88BF355B156C99B200F12AC7 /* cdump.h */,
				88BF355C156C99B200F12AC7 /* class.h */,
				88BF355D156C99B200F12AC7 /* compile.h */,
				88BF355E156C99B200F12AC7 /* data.h */,
				88BF355F156C99B200F12AC7 /* dump.h */,
				88BF3560156C99B200F12AC7 /* hash.h */,
				88BF3561156C99B200F12AC7 /* irep.h */,
				88BF3562156C99B200F12AC7 /* khash.h */,
				88BF3563156C99B200F12AC7 /* numeric.h */,
				88BF3564156C99B200F12AC7 /* object.h */,
				88BF3565156C99B200F12AC7 /* proc.h */,
				88BF3566156C99B200F12AC7 /* range.h */,
				88BF3567156C99B200F12AC7 /* string.h */,
				88BF3568156C99B200F12AC7 /* struct.h */,
				88BF3569156C99B200F12AC7 /* variable.h */,
			);
			path = mruby;
			sourceTree = "<group>";
		};
		88BF357D156C99C200F12AC7 /* mrblib */ = {
			isa = PBXGroup;
			children = (
				88BF357E156C99C200F12AC7 /* array.rb */,
				88BF3580156C99C200F12AC7 /* compar.rb */,
				88BF3581156C99C200F12AC7 /* enum.rb */,
				88BF3582156C99C200F12AC7 /* error.rb */,
				88BF3583156C99C200F12AC7 /* hash.rb */,
				88BF3584156C99C200F12AC7 /* init_mrblib.c */,
				88760B1C15769CEE00113BFB /* mrblib.c */,
				88BF3585156C99C200F12AC7 /* kernel.rb */,
				88BF3587156C99C200F12AC7 /* numeric.rb */,
				88BF3588156C99C200F12AC7 /* print.rb */,
				88BF3589156C99C200F12AC7 /* range.rb */,
				88BF358A156C99C200F12AC7 /* string.rb */,
				88BF358B156C99C200F12AC7 /* struct.rb */,
			);
			name = mrblib;
			path = ../mrblib;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		88760AA015759B4F00113BFB /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760AE315759EFE00113BFB /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760B711576A33100113BFB /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B8C1576A37600113BFB /* mrbconf.h in Headers */,
				88760B8D1576A37600113BFB /* array.h in Headers */,
				88760B8E1576A37600113BFB /* cdump.h in Headers */,
				88760B8F1576A37600113BFB /* class.h in Headers */,
				88760B901576A37600113BFB /* compile.h in Headers */,
				88760B911576A37600113BFB /* data.h in Headers */,
				88760B921576A37600113BFB /* dump.h in Headers */,
				88760B931576A37600113BFB /* hash.h in Headers */,
				88760B941576A37600113BFB /* irep.h in Headers */,
				88760B951576A37600113BFB /* khash.h in Headers */,
				88760B961576A37600113BFB /* numeric.h in Headers */,
				88760B971576A37600113BFB /* object.h in Headers */,
				88760B981576A37600113BFB /* proc.h in Headers */,
				88760B991576A37600113BFB /* range.h in Headers */,
				88760B9A1576A37600113BFB /* string.h in Headers */,
				88760B9B1576A37600113BFB /* struct.h in Headers */,
				88760B9C1576A37600113BFB /* variable.h in Headers */,
				88760B9D1576A37600113BFB /* mruby.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXLegacyTarget section */
		88BF3594156CA10D00F12AC7 /* make_mruby */ = {
			isa = PBXLegacyTarget;
			buildArgumentsString = "$(ACTION)";
			buildConfigurationList = 88BF3595156CA10D00F12AC7 /* Build configuration list for PBXLegacyTarget "make_mruby" */;
			buildPhases = (
			);
			buildToolPath = /usr/bin/make;
			buildWorkingDirectory = "$(SRCROOT)/..";
			dependencies = (
			);
			name = make_mruby;
			passBuildSettingsInEnvironment = 1;
			productName = make_mruby;
		};
/* End PBXLegacyTarget section */

/* Begin PBXNativeTarget section */
		8844358E1577301B007F95A4 /* mrbtest */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 884435961577301B007F95A4 /* Build configuration list for PBXNativeTarget "mrbtest" */;
			buildPhases = (
				8844359915773052007F95A4 /* ShellScript */,
				8844358B1577301B007F95A4 /* Sources */,
				8844358C1577301B007F95A4 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				8844359E15773126007F95A4 /* PBXTargetDependency */,
			);
			name = mrbtest;
			productName = mrbtest;
			productReference = 8844358F1577301B007F95A4 /* mrbtest */;
			productType = "com.apple.product-type.tool";
		};
		88760A8A157590F000113BFB /* mrbc */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 88760A92157590F000113BFB /* Build configuration list for PBXNativeTarget "mrbc" */;
			buildPhases = (
				88760A87157590F000113BFB /* Sources */,
				88760A88157590F000113BFB /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				88760B1B15769C5E00113BFB /* PBXTargetDependency */,
			);
			name = mrbc;
			productName = mrbc;
			productReference = 8844353C1576F1A3007F95A4 /* mrbc */;
			productType = "com.apple.product-type.tool";
		};
		88760AA115759B4F00113BFB /* ruby_lib */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 88760AA315759B4F00113BFB /* Build configuration list for PBXNativeTarget "ruby_lib" */;
			buildPhases = (
				88760AE015759C3600113BFB /* ShellScript */,
				88760A9E15759B4F00113BFB /* Sources */,
				88760A9F15759B4F00113BFB /* Frameworks */,
				88760AA015759B4F00113BFB /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
				88760ADF15759C1C00113BFB /* PBXTargetDependency */,
			);
			name = ruby_lib;
			productName = ruby_lib;
			productReference = 8844353E1576F1A3007F95A4 /* libmruby.a */;
			productType = "com.apple.product-type.library.static";
		};
		88760AE415759EFE00113BFB /* mruby_core */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 88760AE615759EFE00113BFB /* Build configuration list for PBXNativeTarget "mruby_core" */;
			buildPhases = (
				88760AE915759F5E00113BFB /* ShellScript */,
				88760AE115759EFE00113BFB /* Sources */,
				88760AE215759EFE00113BFB /* Frameworks */,
				88760AE315759EFE00113BFB /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = mruby_core;
			productName = test;
			productReference = 8844353B1576F1A3007F95A4 /* libmruby_core.a */;
			productType = "com.apple.product-type.library.static";
		};
		88760B2315769E6100113BFB /* mruby */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 88760B2B15769E6100113BFB /* Build configuration list for PBXNativeTarget "mruby" */;
			buildPhases = (
				88760B2015769E6100113BFB /* Sources */,
				88760B2115769E6100113BFB /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				88760B2F15769E8000113BFB /* PBXTargetDependency */,
			);
			name = mruby;
			productName = mruby;
			productReference = 88760B2415769E6100113BFB /* mruby */;
			productType = "com.apple.product-type.tool";
		};
		88760B3215769F3000113BFB /* mirb */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 88760B3915769F3000113BFB /* Build configuration list for PBXNativeTarget "mirb" */;
			buildPhases = (
				88760B3515769F3000113BFB /* Sources */,
				88760B3715769F3000113BFB /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
				88760B3315769F3000113BFB /* PBXTargetDependency */,
			);
			name = mirb;
			productName = mruby;
			productReference = 88760B3C15769F3000113BFB /* mirb */;
			productType = "com.apple.product-type.tool";
		};
		88760B731576A33100113BFB /* mruby_fw */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 88760B861576A33100113BFB /* Build configuration list for PBXNativeTarget "mruby_fw" */;
			buildPhases = (
				88760B9E1576A47F00113BFB /* ShellScript */,
				88760B6F1576A33100113BFB /* Sources */,
				88760B701576A33100113BFB /* Frameworks */,
				88760B711576A33100113BFB /* Headers */,
				88760B721576A33100113BFB /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
				88760B8A1576A35C00113BFB /* PBXTargetDependency */,
			);
			name = mruby_fw;
			productName = mruby_fw;
			productReference = 8844353F1576F1A3007F95A4 /* mruby.framework */;
			productType = "com.apple.product-type.framework";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		88BF3371156C992100F12AC7 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 0430;
			};
			buildConfigurationList = 88BF3374156C992100F12AC7 /* Build configuration list for PBXProject "mruby" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = 88BF336F156C992100F12AC7;
			productRefGroup = 88BF336F156C992100F12AC7;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				88BF3594156CA10D00F12AC7 /* make_mruby */,
				88760AE415759EFE00113BFB /* mruby_core */,
				88760A8A157590F000113BFB /* mrbc */,
				88760AA115759B4F00113BFB /* ruby_lib */,
				88760B2315769E6100113BFB /* mruby */,
				88760B3215769F3000113BFB /* mirb */,
				8844358E1577301B007F95A4 /* mrbtest */,
				88760B731576A33100113BFB /* mruby_fw */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		88760B721576A33100113BFB /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B811576A33100113BFB /* InfoPlist.strings in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		8844359915773052007F95A4 /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "cd ../test\ncat ./assert.rb ./t/*.rb > mrbtest.rbtmp\n../Xcode/build/mrbc -Bmrbtest_irep -omrbtest.ctmp mrbtest.rbtmp\ncat init_mrbtest.c mrbtest.ctmp > mrbtest.c";
		};
		88760AE015759C3600113BFB /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "cd ../mrblib\ncat ./*.rb > mrblib.rbtmp\n../Xcode/build/mrbc -Bmrblib_irep -omrblib.ctmp mrblib.rbtmp\ncat init_mrblib.c mrblib.ctmp > mrblib.c";
		};
		88760AE915759F5E00113BFB /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "bison -o ../src/y.tab.c ../src/parse.y";
		};
		88760B9E1576A47F00113BFB /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "cd ../mrblib\ncat ./*.rb > mrblib.rbtmp\n../Xcode/build/mrbc -Bmrblib_irep -omrblib.ctmp mrblib.rbtmp\ncat init_mrblib.c mrblib.ctmp > mrblib.c";
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		8844358B1577301B007F95A4 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				8844359B157730E1007F95A4 /* mrbtest.c in Sources */,
				8844359F15773215007F95A4 /* driver.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760A87157590F000113BFB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760A97157591E100113BFB /* mrbc.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760A9E15759B4F00113BFB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B1D15769CEE00113BFB /* mrblib.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760AE115759EFE00113BFB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760AEA15759F9700113BFB /* y.tab.c in Sources */,
				88760AEB15759F9700113BFB /* array.c in Sources */,
				88760AEC15759F9700113BFB /* ascii.c in Sources */,
				88760AED15759F9700113BFB /* cdump.c in Sources */,
				88760AEE15759F9700113BFB /* class.c in Sources */,
				88760AEF15759F9700113BFB /* codegen.c in Sources */,
				88760AF015759F9700113BFB /* compar.c in Sources */,
				88760AF115759F9700113BFB /* crc.c in Sources */,
				88760AF215759F9700113BFB /* dump.c in Sources */,
				88760AF315759F9700113BFB /* encoding.c in Sources */,
				88760AF415759F9700113BFB /* enum.c in Sources */,
				88760AF515759F9700113BFB /* error.c in Sources */,
				88760AF615759F9700113BFB /* etc.c in Sources */,
				88760AF715759F9700113BFB /* gc.c in Sources */,
				88760AF815759F9700113BFB /* hash.c in Sources */,
				88760AF915759F9700113BFB /* init.c in Sources */,
				88760AFA15759F9700113BFB /* init_ext.c in Sources */,
				88760AFB15759F9700113BFB /* kernel.c in Sources */,
				88760AFC15759F9700113BFB /* load.c in Sources */,
				88760AFD15759F9700113BFB /* math.c in Sources */,
				88760AFE15759F9700113BFB /* numeric.c in Sources */,
				88760AFF15759F9700113BFB /* object.c in Sources */,
				88760B0015759F9700113BFB /* pool.c in Sources */,
				88760B0115759F9700113BFB /* print.c in Sources */,
				88760B0215759F9700113BFB /* proc.c in Sources */,
				88760B0315759F9700113BFB /* range.c in Sources */,
				88760B0415759F9700113BFB /* re.c in Sources */,
				88760B0515759F9700113BFB /* regcomp.c in Sources */,
				88760B0615759F9700113BFB /* regenc.c in Sources */,
				88760B0715759F9700113BFB /* regerror.c in Sources */,
				88760B0815759F9700113BFB /* regexec.c in Sources */,
				88760B0915759F9700113BFB /* regparse.c in Sources */,
				88760B0A15759F9700113BFB /* sprintf.c in Sources */,
				88760B0B15759F9700113BFB /* st.c in Sources */,
				88760B0C15759F9700113BFB /* state.c in Sources */,
				88760B0D15759F9700113BFB /* string.c in Sources */,
				88760B0E15759F9700113BFB /* struct.c in Sources */,
				88760B0F15759F9700113BFB /* symbol.c in Sources */,
				88760B1015759F9700113BFB /* time.c in Sources */,
				88760B1115759F9700113BFB /* transcode.c in Sources */,
				88760B1215759F9700113BFB /* unicode.c in Sources */,
				88760B1315759F9700113BFB /* us_ascii.c in Sources */,
				88760B1415759F9700113BFB /* utf_8.c in Sources */,
				88760B1515759F9700113BFB /* variable.c in Sources */,
				88760B1615759F9700113BFB /* vm.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760B2015769E6100113BFB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B3015769E8D00113BFB /* mruby.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760B3515769F3000113BFB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B3E15769F5000113BFB /* mirb.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		88760B6F1576A33100113BFB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				88760B9F1576A4A200113BFB /* mrblib.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		8844359E15773126007F95A4 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 88760AA115759B4F00113BFB /* ruby_lib */;
			targetProxy = 8844359D15773126007F95A4 /* PBXContainerItemProxy */;
		};
		88760ADF15759C1C00113BFB /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 88760A8A157590F000113BFB /* mrbc */;
			targetProxy = 88760ADE15759C1C00113BFB /* PBXContainerItemProxy */;
		};
		88760B1B15769C5E00113BFB /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 88760AE415759EFE00113BFB /* mruby_core */;
			targetProxy = 88760B1A15769C5E00113BFB /* PBXContainerItemProxy */;
		};
		88760B2F15769E8000113BFB /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 88760AA115759B4F00113BFB /* ruby_lib */;
			targetProxy = 88760B2E15769E8000113BFB /* PBXContainerItemProxy */;
		};
		88760B3315769F3000113BFB /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 88760AA115759B4F00113BFB /* ruby_lib */;
			targetProxy = 88760B3415769F3000113BFB /* PBXContainerItemProxy */;
		};
		88760B8A1576A35C00113BFB /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 88760AA115759B4F00113BFB /* ruby_lib */;
			targetProxy = 88760B891576A35C00113BFB /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		88760B7F1576A33100113BFB /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				88760B801576A33100113BFB /* en */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		884435971577301B007F95A4 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INSTALL_PATH = /;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		884435981577301B007F95A4 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INSTALL_PATH = /;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		88760A93157590F000113BFB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				INSTALL_PATH = /;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		88760A94157590F000113BFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				INSTALL_PATH = /;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		88760AA415759B4F00113BFB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				EXECUTABLE_PREFIX = lib;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INSTALL_PATH = /lib;
				PRODUCT_NAME = mruby;
			};
			name = Debug;
		};
		88760AA515759B4F00113BFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				EXECUTABLE_PREFIX = lib;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INSTALL_PATH = /lib;
				PRODUCT_NAME = mruby;
			};
			name = Release;
		};
		88760AE715759EFE00113BFB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				EXECUTABLE_PREFIX = lib;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				GCC_OPTIMIZATION_LEVEL = 3;
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INSTALL_PATH = /lib;
				LIBRARY_STYLE = STATIC;
				PRODUCT_NAME = "$(TARGET_NAME)";
				USE_HEADERMAP = "$(inherited)";
			};
			name = Debug;
		};
		88760AE815759EFE00113BFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				EXECUTABLE_PREFIX = lib;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INSTALL_PATH = /lib;
				LIBRARY_STYLE = STATIC;
				PRODUCT_NAME = "$(TARGET_NAME)";
				USE_HEADERMAP = "$(inherited)";
			};
			name = Release;
		};
		88760B2C15769E6100113BFB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INSTALL_PATH = /;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		88760B2D15769E6100113BFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INSTALL_PATH = /;
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
		88760B3A15769F3000113BFB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				INSTALL_PATH = /;
				PRODUCT_NAME = mirb;
			};
			name = Debug;
		};
		88760B3B15769F3000113BFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				INSTALL_PATH = /;
				PRODUCT_NAME = mirb;
			};
			name = Release;
		};
		88760B871576A33100113BFB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				FRAMEWORK_VERSION = A;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "mruby_fw/mruby_fw-Prefix.pch";
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INFOPLIST_FILE = "mruby_fw/mruby_fw-Info.plist";
				INSTALL_PATH = /;
				PRODUCT_NAME = mruby;
				WRAPPER_EXTENSION = framework;
			};
			name = Debug;
		};
		88760B881576A33100113BFB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEPLOYMENT_LOCATION = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				FRAMEWORK_VERSION = A;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "mruby_fw/mruby_fw-Prefix.pch";
				HEADER_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(SRCROOT)/../src\"",
				);
				INFOPLIST_FILE = "mruby_fw/mruby_fw-Info.plist";
				INSTALL_PATH = /;
				PRODUCT_NAME = mruby;
				WRAPPER_EXTENSION = framework;
			};
			name = Release;
		};
		88BF337C156C992100F12AC7 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				COPY_PHASE_STRIP = NO;
				DEPLOYMENT_LOCATION = YES;
				DSTROOT = "$(SRCROOT)/build";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_OPTIMIZATION_LEVEL = 3;
				GCC_PREPROCESSOR_DEFINITIONS = (
					HAVE_FLOAT_H,
					HAVE_STRING_H,
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = "\"$(SRCROOT)/../include\"";
				LIBRARY_SEARCH_PATHS = "\"$(SRCROOT)/../lib\"";
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = macosx;
				USE_HEADERMAP = NO;
			};
			name = Debug;
		};
		88BF337D156C992100F12AC7 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_64_BIT)";
				COPY_PHASE_STRIP = YES;
				DEPLOYMENT_LOCATION = YES;
				DSTROOT = "$(SRCROOT)/build";
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_OBJC_EXCEPTIONS = YES;
				GCC_PREPROCESSOR_DEFINITIONS = (
					HAVE_FLOAT_H,
					HAVE_STRING_H,
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = "\"$(SRCROOT)/../include\"";
				LIBRARY_SEARCH_PATHS = "\"$(SRCROOT)/../lib\"";
				MACOSX_DEPLOYMENT_TARGET = 10.7;
				SDKROOT = macosx;
				USE_HEADERMAP = NO;
			};
			name = Release;
		};
		88BF3596156CA10D00F12AC7 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEBUGGING_SYMBOLS = YES;
				GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Debug;
		};
		88BF3597156CA10D00F12AC7 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				OTHER_CFLAGS = "";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = "$(TARGET_NAME)";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		884435961577301B007F95A4 /* Build configuration list for PBXNativeTarget "mrbtest" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				884435971577301B007F95A4 /* Debug */,
				884435981577301B007F95A4 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		88760A92157590F000113BFB /* Build configuration list for PBXNativeTarget "mrbc" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				88760A93157590F000113BFB /* Debug */,
				88760A94157590F000113BFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		88760AA315759B4F00113BFB /* Build configuration list for PBXNativeTarget "ruby_lib" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				88760AA415759B4F00113BFB /* Debug */,
				88760AA515759B4F00113BFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		88760AE615759EFE00113BFB /* Build configuration list for PBXNativeTarget "mruby_core" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				88760AE715759EFE00113BFB /* Debug */,
				88760AE815759EFE00113BFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		88760B2B15769E6100113BFB /* Build configuration list for PBXNativeTarget "mruby" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				88760B2C15769E6100113BFB /* Debug */,
				88760B2D15769E6100113BFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		88760B3915769F3000113BFB /* Build configuration list for PBXNativeTarget "mirb" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				88760B3A15769F3000113BFB /* Debug */,
				88760B3B15769F3000113BFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		88760B861576A33100113BFB /* Build configuration list for PBXNativeTarget "mruby_fw" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				88760B871576A33100113BFB /* Debug */,
				88760B881576A33100113BFB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		88BF3374156C992100F12AC7 /* Build configuration list for PBXProject "mruby" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				88BF337C156C992100F12AC7 /* Debug */,
				88BF337D156C992100F12AC7 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		88BF3595156CA10D00F12AC7 /* Build configuration list for PBXLegacyTarget "make_mruby" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				88BF3596156CA10D00F12AC7 /* Debug */,
				88BF3597156CA10D00F12AC7 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 88BF3371156C992100F12AC7 /* Project object */;
}