File: project.pbxproj

package info (click to toggle)
wcalc 2.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid
  • size: 2,284 kB
  • sloc: ansic: 8,379; sh: 2,250; objc: 1,776; lex: 852; yacc: 603; makefile: 127
file content (845 lines) | stat: -rw-r--r-- 55,335 bytes parent folder | download | duplicates (3)
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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 45;
	objects = {

/* Begin PBXBuildFile section */
		2704376C0C4584640024DB8D /* number.c in Sources */ = {isa = PBXBuildFile; fileRef = 2704376A0C4584640024DB8D /* number.c */; };
		2704376D0C4584640024DB8D /* number.h in Headers */ = {isa = PBXBuildFile; fileRef = 2704376B0C4584640024DB8D /* number.h */; };
		2704376E0C4584640024DB8D /* number.c in Sources */ = {isa = PBXBuildFile; fileRef = 2704376A0C4584640024DB8D /* number.c */; };
		2704376F0C4584640024DB8D /* number.h in Headers */ = {isa = PBXBuildFile; fileRef = 2704376B0C4584640024DB8D /* number.h */; };
		27085E2A0EB4D75E009B43DD /* libl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2789AB460EB1877D008DEB99 /* libl.a */; };
		27085F000EB512E1009B43DD /* libncurses.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 27085EFF0EB512E1009B43DD /* libncurses.dylib */; };
		27085F040EB51331009B43DD /* iscmd.c in Sources */ = {isa = PBXBuildFile; fileRef = 27085F020EB51331009B43DD /* iscmd.c */; };
		27085F050EB51331009B43DD /* iscmd.h in Headers */ = {isa = PBXBuildFile; fileRef = 27085F030EB51331009B43DD /* iscmd.h */; };
		27085F060EB51331009B43DD /* iscmd.c in Sources */ = {isa = PBXBuildFile; fileRef = 27085F020EB51331009B43DD /* iscmd.c */; };
		27085F070EB51331009B43DD /* iscmd.h in Headers */ = {isa = PBXBuildFile; fileRef = 27085F030EB51331009B43DD /* iscmd.h */; };
		27085F0A0EB51382009B43DD /* libreadline.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27085F090EB51382009B43DD /* libreadline.a */; };
		27085F0C0EB5138C009B43DD /* libhistory.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 27085F0B0EB5138C009B43DD /* libhistory.a */; };
		271AB2670EBB813500250C1C /* libgmp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 271AB2660EBB813500250C1C /* libgmp.a */; };
		271AB2680EBB813500250C1C /* libgmp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 271AB2660EBB813500250C1C /* libgmp.a */; };
		271AB26A0EBB813A00250C1C /* libmpfr.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 271AB2690EBB813A00250C1C /* libmpfr.a */; };
		271AB26B0EBB813A00250C1C /* libmpfr.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 271AB2690EBB813A00250C1C /* libmpfr.a */; };
		2729A40209B1ECE5001F07F4 /* add_commas.h in Headers */ = {isa = PBXBuildFile; fileRef = 2729A40009B1ECE5001F07F4 /* add_commas.h */; };
		2729A40309B1ECE5001F07F4 /* add_commas.c in Sources */ = {isa = PBXBuildFile; fileRef = 2729A40109B1ECE5001F07F4 /* add_commas.c */; };
		2729A40409B1ECE5001F07F4 /* add_commas.h in Headers */ = {isa = PBXBuildFile; fileRef = 2729A40009B1ECE5001F07F4 /* add_commas.h */; };
		2729A40509B1ECE5001F07F4 /* add_commas.c in Sources */ = {isa = PBXBuildFile; fileRef = 2729A40109B1ECE5001F07F4 /* add_commas.c */; };
		2729A53809B256DA001F07F4 /* PersVarList.h in Headers */ = {isa = PBXBuildFile; fileRef = 2729A53609B256DA001F07F4 /* PersVarList.h */; };
		2729A53909B256DA001F07F4 /* PersVarList.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729A53709B256DA001F07F4 /* PersVarList.m */; };
		272C376308C3FDAF009EA18F /* number_formatting.h in Headers */ = {isa = PBXBuildFile; fileRef = 272C375F08C3FDAF009EA18F /* number_formatting.h */; };
		272C376408C3FDAF009EA18F /* number_formatting.c in Sources */ = {isa = PBXBuildFile; fileRef = 272C376008C3FDAF009EA18F /* number_formatting.c */; };
		273655E6094C63910043391C /* list.h in Headers */ = {isa = PBXBuildFile; fileRef = 273655E4094C63910043391C /* list.h */; };
		273655E7094C63910043391C /* list.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655E5094C63910043391C /* list.c */; };
		273655E8094C63910043391C /* list.h in Headers */ = {isa = PBXBuildFile; fileRef = 273655E4094C63910043391C /* list.h */; };
		273655E9094C63910043391C /* list.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655E5094C63910043391C /* list.c */; };
		273655F3094C63F20043391C /* explain.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655EF094C63F20043391C /* explain.c */; };
		273655F4094C63F20043391C /* explain.h in Headers */ = {isa = PBXBuildFile; fileRef = 273655F0094C63F20043391C /* explain.h */; };
		273655F5094C63F20043391C /* extract_vars.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655F1094C63F20043391C /* extract_vars.c */; };
		273655F6094C63F20043391C /* extract_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = 273655F2094C63F20043391C /* extract_vars.h */; };
		273655F7094C63F20043391C /* explain.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655EF094C63F20043391C /* explain.c */; };
		273655F8094C63F20043391C /* explain.h in Headers */ = {isa = PBXBuildFile; fileRef = 273655F0094C63F20043391C /* explain.h */; };
		273655F9094C63F20043391C /* extract_vars.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655F1094C63F20043391C /* extract_vars.c */; };
		273655FA094C63F20043391C /* extract_vars.h in Headers */ = {isa = PBXBuildFile; fileRef = 273655F2094C63F20043391C /* extract_vars.h */; };
		27365601094C64170043391C /* isconst.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655FD094C64170043391C /* isconst.c */; };
		27365602094C64170043391C /* isfunc.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655FE094C64170043391C /* isfunc.c */; };
		27365603094C64170043391C /* isconst.h in Headers */ = {isa = PBXBuildFile; fileRef = 273655FF094C64170043391C /* isconst.h */; };
		27365604094C64170043391C /* isfunc.h in Headers */ = {isa = PBXBuildFile; fileRef = 27365600094C64170043391C /* isfunc.h */; };
		27365605094C64170043391C /* isconst.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655FD094C64170043391C /* isconst.c */; };
		27365606094C64170043391C /* isfunc.c in Sources */ = {isa = PBXBuildFile; fileRef = 273655FE094C64170043391C /* isfunc.c */; };
		27365607094C64170043391C /* isconst.h in Headers */ = {isa = PBXBuildFile; fileRef = 273655FF094C64170043391C /* isconst.h */; };
		27365608094C64170043391C /* isfunc.h in Headers */ = {isa = PBXBuildFile; fileRef = 27365600094C64170043391C /* isfunc.h */; };
		2736560B094C642B0043391C /* evalvar.c in Sources */ = {isa = PBXBuildFile; fileRef = 27365609094C642B0043391C /* evalvar.c */; };
		2736560C094C642B0043391C /* evalvar.h in Headers */ = {isa = PBXBuildFile; fileRef = 2736560A094C642B0043391C /* evalvar.h */; };
		2736560D094C642B0043391C /* evalvar.c in Sources */ = {isa = PBXBuildFile; fileRef = 27365609094C642B0043391C /* evalvar.c */; };
		2736560E094C642B0043391C /* evalvar.h in Headers */ = {isa = PBXBuildFile; fileRef = 2736560A094C642B0043391C /* evalvar.h */; };
		275D2B5E0C5032E50056D137 /* WcalcService.h in Headers */ = {isa = PBXBuildFile; fileRef = 275D2B5C0C5032E50056D137 /* WcalcService.h */; };
		275D2B5F0C5032E50056D137 /* WcalcService.m in Sources */ = {isa = PBXBuildFile; fileRef = 275D2B5D0C5032E50056D137 /* WcalcService.m */; };
		2773DD3409180D4300DBDA9D /* calculator.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B29D6601F7391601A80164 /* calculator.h */; };
		2773DD3509180D4300DBDA9D /* variables.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B29D7401F7394501A80164 /* variables.h */; };
		2773DD3609180D4300DBDA9D /* definitions.h in Headers */ = {isa = PBXBuildFile; fileRef = F5DEAE8F021254A501A80164 /* definitions.h */; };
		2773DD3709180D4300DBDA9D /* string_manip.h in Headers */ = {isa = PBXBuildFile; fileRef = F5293926023032E201A80164 /* string_manip.h */; };
		2773DD3809180D4300DBDA9D /* conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = F5DD321702F8F43501A80164 /* conversion.h */; };
		2773DD3909180D4300DBDA9D /* help.h in Headers */ = {isa = PBXBuildFile; fileRef = 2799DA4303FAD61400CA71DD /* help.h */; };
		2773DD3A09180D4300DBDA9D /* files.h in Headers */ = {isa = PBXBuildFile; fileRef = 275710BC042D0472004ACA36 /* files.h */; };
		2773DD3B09180D4300DBDA9D /* number_formatting.h in Headers */ = {isa = PBXBuildFile; fileRef = 272C375F08C3FDAF009EA18F /* number_formatting.h */; };
		2773DD3D09180D4300DBDA9D /* calculator.c in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D6501F7391601A80164 /* calculator.c */; };
		2773DD3E09180D4300DBDA9D /* variables.c in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D7301F7394501A80164 /* variables.c */; };
		2773DD3F09180D4300DBDA9D /* parser.y in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D6D01F7393A01A80164 /* parser.y */; };
		2773DD4009180D4300DBDA9D /* scanner.l in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D6E01F7393A01A80164 /* scanner.l */; };
		2773DD4109180D4300DBDA9D /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = F521993F01F8D2B801A80164 /* main.c */; };
		2773DD4209180D4300DBDA9D /* string_manip.c in Sources */ = {isa = PBXBuildFile; fileRef = F5293927023032E201A80164 /* string_manip.c */; };
		2773DD4309180D4300DBDA9D /* conversion.c in Sources */ = {isa = PBXBuildFile; fileRef = F5DD321602F8F43501A80164 /* conversion.c */; };
		2773DD4409180D4300DBDA9D /* help.c in Sources */ = {isa = PBXBuildFile; fileRef = 2799DA4403FAD61400CA71DD /* help.c */; };
		2773DD4509180D4300DBDA9D /* files.c in Sources */ = {isa = PBXBuildFile; fileRef = 275710BD042D0472004ACA36 /* files.c */; };
		2773DD4609180D4300DBDA9D /* number_formatting.c in Sources */ = {isa = PBXBuildFile; fileRef = 272C376008C3FDAF009EA18F /* number_formatting.c */; };
		2773DD650918117800DBDA9D /* historyManager.c in Sources */ = {isa = PBXBuildFile; fileRef = F574E09E01FD122F01A80164 /* historyManager.c */; };
		2773DD660918117900DBDA9D /* historyManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F574E09D01FD122F01A80164 /* historyManager.h */; };
		2789AADA0EB1772B008DEB99 /* NewWcalc.icns in Resources */ = {isa = PBXBuildFile; fileRef = 2789AAD90EB1772B008DEB99 /* NewWcalc.icns */; };
		2789AB470EB1877D008DEB99 /* libl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2789AB460EB1877D008DEB99 /* libl.a */; };
		27BDF4C8059F712200CF1DF6 /* simpleCalc.c in Sources */ = {isa = PBXBuildFile; fileRef = 27BDF4C4059F712100CF1DF6 /* simpleCalc.c */; };
		27BDF4C9059F712200CF1DF6 /* simpleCalc.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BDF4C5059F712100CF1DF6 /* simpleCalc.h */; };
		27D39129059BEA850035F25F /* AboutBoxController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B29D6101F7391001A80164 /* AboutBoxController.h */; };
		27D3912A059BEA850035F25F /* calculator.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B29D6601F7391601A80164 /* calculator.h */; };
		27D3912B059BEA850035F25F /* ErrorController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B29D6901F7392301A80164 /* ErrorController.h */; };
		27D3912C059BEA850035F25F /* variables.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B29D7401F7394501A80164 /* variables.h */; };
		27D3912D059BEA850035F25F /* WcalcController.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B29D7701F7395001A80164 /* WcalcController.h */; };
		27D3912E059BEA850035F25F /* VariableList.h in Headers */ = {isa = PBXBuildFile; fileRef = F521994601FA8EC401A80164 /* VariableList.h */; };
		27D3912F059BEA850035F25F /* HistoryList.h in Headers */ = {isa = PBXBuildFile; fileRef = F574E09901FD0FD701A80164 /* HistoryList.h */; };
		27D39130059BEA850035F25F /* historyManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F574E09D01FD122F01A80164 /* historyManager.h */; };
		27D39131059BEA850035F25F /* theDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F5EF54D302022A7001A80164 /* theDelegate.h */; };
		27D39132059BEA850035F25F /* definitions.h in Headers */ = {isa = PBXBuildFile; fileRef = F5DEAE8F021254A501A80164 /* definitions.h */; };
		27D39133059BEA850035F25F /* string_manip.h in Headers */ = {isa = PBXBuildFile; fileRef = F5293926023032E201A80164 /* string_manip.h */; };
		27D39134059BEA850035F25F /* MyTextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F5D446D00263B46801A80164 /* MyTextField.h */; };
		27D39135059BEA850035F25F /* conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = F5DD321702F8F43501A80164 /* conversion.h */; };
		27D39136059BEA850035F25F /* ConversionList.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A165F7030711ED01A80164 /* ConversionList.h */; };
		27D39137059BEA850035F25F /* help.h in Headers */ = {isa = PBXBuildFile; fileRef = 2799DA4303FAD61400CA71DD /* help.h */; };
		27D39138059BEA850035F25F /* files.h in Headers */ = {isa = PBXBuildFile; fileRef = 275710BC042D0472004ACA36 /* files.h */; };
		27D3913A059BEA850035F25F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; };
		27D3913B059BEA850035F25F /* TheW.icns in Resources */ = {isa = PBXBuildFile; fileRef = F5B29D6F01F7393A01A80164 /* TheW.icns */; };
		27D3913C059BEA850035F25F /* MainMenu.nib in Resources */ = {isa = PBXBuildFile; fileRef = F5B29D7B01F7398A01A80164 /* MainMenu.nib */; };
		27D3913D059BEA850035F25F /* w.png in Resources */ = {isa = PBXBuildFile; fileRef = F5B29D8301F73C2701A80164 /* w.png */; };
		27D3913E059BEA850035F25F /* ChangeLog in Resources */ = {isa = PBXBuildFile; fileRef = F521994801FA927601A80164 /* ChangeLog */; };
		27D3913F059BEA850035F25F /* Wred.png in Resources */ = {isa = PBXBuildFile; fileRef = F5463560020065B401A80164 /* Wred.png */; };
		27D39140059BEA850035F25F /* COPYING in Resources */ = {isa = PBXBuildFile; fileRef = 277DB27D042F5173004ACA36 /* COPYING */; };
		27D39141059BEA850035F25F /* NEWS in Resources */ = {isa = PBXBuildFile; fileRef = 277DB27F042F51A5004ACA36 /* NEWS */; };
		27D39143059BEA850035F25F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; settings = {ATTRIBUTES = (); }; };
		27D39144059BEA850035F25F /* AboutBoxController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D6201F7391001A80164 /* AboutBoxController.m */; };
		27D39145059BEA850035F25F /* calculator.c in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D6501F7391601A80164 /* calculator.c */; };
		27D39146059BEA850035F25F /* ErrorController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D6A01F7392301A80164 /* ErrorController.m */; };
		27D39147059BEA850035F25F /* parser.y in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D6D01F7393A01A80164 /* parser.y */; };
		27D39148059BEA850035F25F /* variables.c in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D7301F7394501A80164 /* variables.c */; };
		27D39149059BEA850035F25F /* WcalcController.m in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D7801F7395001A80164 /* WcalcController.m */; };
		27D3914A059BEA850035F25F /* VariableList.m in Sources */ = {isa = PBXBuildFile; fileRef = F521994301FA86B001A80164 /* VariableList.m */; };
		27D3914B059BEA850035F25F /* HistoryList.m in Sources */ = {isa = PBXBuildFile; fileRef = F574E09A01FD0FD701A80164 /* HistoryList.m */; };
		27D3914C059BEA850035F25F /* theDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F5EF54D202022A7001A80164 /* theDelegate.m */; };
		27D3914D059BEA850035F25F /* historyManager.c in Sources */ = {isa = PBXBuildFile; fileRef = F574E09E01FD122F01A80164 /* historyManager.c */; };
		27D3914E059BEA850035F25F /* string_manip.c in Sources */ = {isa = PBXBuildFile; fileRef = F5293927023032E201A80164 /* string_manip.c */; };
		27D3914F059BEA850035F25F /* MyTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = F5D446D10263B46801A80164 /* MyTextField.m */; };
		27D39150059BEA850035F25F /* scanner.l in Sources */ = {isa = PBXBuildFile; fileRef = F5B29D6E01F7393A01A80164 /* scanner.l */; };
		27D39151059BEA850035F25F /* conversion.c in Sources */ = {isa = PBXBuildFile; fileRef = F5DD321602F8F43501A80164 /* conversion.c */; };
		27D39152059BEA850035F25F /* ConversionList.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A165F8030711ED01A80164 /* ConversionList.m */; };
		27D39153059BEA850035F25F /* help.c in Sources */ = {isa = PBXBuildFile; fileRef = 2799DA4403FAD61400CA71DD /* help.c */; };
		27D39154059BEA850035F25F /* files.c in Sources */ = {isa = PBXBuildFile; fileRef = 275710BD042D0472004ACA36 /* files.c */; };
		27D39156059BEA850035F25F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
		27FAECF2093FAE5A00D7EE3E /* InspectorController.h in Headers */ = {isa = PBXBuildFile; fileRef = 27FAECF0093FAE5A00D7EE3E /* InspectorController.h */; };
		27FAECF3093FAE5A00D7EE3E /* InspectorController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27FAECF1093FAE5A00D7EE3E /* InspectorController.m */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
		2704376A0C4584640024DB8D /* number.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = number.c; sourceTree = "<group>"; };
		2704376B0C4584640024DB8D /* number.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = number.h; sourceTree = "<group>"; };
		27085EFF0EB512E1009B43DD /* libncurses.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libncurses.dylib; path = usr/lib/libncurses.dylib; sourceTree = SDKROOT; };
		27085F020EB51331009B43DD /* iscmd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = iscmd.c; sourceTree = "<group>"; };
		27085F030EB51331009B43DD /* iscmd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iscmd.h; sourceTree = "<group>"; };
		27085F090EB51382009B43DD /* libreadline.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libreadline.a; path = "../universal-libs/lib/libreadline.a"; sourceTree = SOURCE_ROOT; };
		27085F0B0EB5138C009B43DD /* libhistory.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; name = libhistory.a; path = "../universal-libs/lib/libhistory.a"; sourceTree = SOURCE_ROOT; };
		271AB2660EBB813500250C1C /* libgmp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgmp.a; path = "../universal-libs/lib/libgmp.a"; sourceTree = SOURCE_ROOT; };
		271AB2690EBB813A00250C1C /* libmpfr.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libmpfr.a; path = "../universal-libs/lib/libmpfr.a"; sourceTree = SOURCE_ROOT; };
		2721CD490869C13400E3BB4D /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		2729A40009B1ECE5001F07F4 /* add_commas.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = add_commas.h; sourceTree = "<group>"; };
		2729A40109B1ECE5001F07F4 /* add_commas.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = add_commas.c; sourceTree = "<group>"; };
		2729A53609B256DA001F07F4 /* PersVarList.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PersVarList.h; sourceTree = "<group>"; };
		2729A53709B256DA001F07F4 /* PersVarList.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = PersVarList.m; sourceTree = "<group>"; };
		272C375F08C3FDAF009EA18F /* number_formatting.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = number_formatting.h; sourceTree = "<group>"; };
		272C376008C3FDAF009EA18F /* number_formatting.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = number_formatting.c; sourceTree = "<group>"; };
		273655E4094C63910043391C /* list.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = list.h; sourceTree = "<group>"; };
		273655E5094C63910043391C /* list.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = list.c; sourceTree = "<group>"; };
		273655EF094C63F20043391C /* explain.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = explain.c; sourceTree = "<group>"; };
		273655F0094C63F20043391C /* explain.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = explain.h; sourceTree = "<group>"; };
		273655F1094C63F20043391C /* extract_vars.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = extract_vars.c; sourceTree = "<group>"; };
		273655F2094C63F20043391C /* extract_vars.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = extract_vars.h; sourceTree = "<group>"; };
		273655FD094C64170043391C /* isconst.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = isconst.c; sourceTree = "<group>"; };
		273655FE094C64170043391C /* isfunc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = isfunc.c; sourceTree = "<group>"; };
		273655FF094C64170043391C /* isconst.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = isconst.h; sourceTree = "<group>"; };
		27365600094C64170043391C /* isfunc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = isfunc.h; sourceTree = "<group>"; };
		27365609094C642B0043391C /* evalvar.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = evalvar.c; sourceTree = "<group>"; };
		2736560A094C642B0043391C /* evalvar.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = evalvar.h; sourceTree = "<group>"; };
		275710BC042D0472004ACA36 /* files.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = files.h; sourceTree = "<group>"; };
		275710BD042D0472004ACA36 /* files.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = files.c; sourceTree = "<group>"; };
		275D2B5C0C5032E50056D137 /* WcalcService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WcalcService.h; sourceTree = "<group>"; };
		275D2B5D0C5032E50056D137 /* WcalcService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WcalcService.m; sourceTree = "<group>"; };
		2773DD4F09180D4300DBDA9D /* wcalc */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = wcalc; sourceTree = BUILT_PRODUCTS_DIR; };
		277DB27D042F5173004ACA36 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = COPYING; sourceTree = "<group>"; };
		277DB27F042F51A5004ACA36 /* NEWS */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = NEWS; sourceTree = "<group>"; };
		2789AAD90EB1772B008DEB99 /* NewWcalc.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = NewWcalc.icns; sourceTree = "<group>"; };
		2789AB460EB1877D008DEB99 /* libl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libl.a; path = /usr/lib/libl.a; sourceTree = "<absolute>"; };
		2799DA4303FAD61400CA71DD /* help.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = help.h; sourceTree = "<group>"; };
		2799DA4403FAD61400CA71DD /* help.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = help.c; sourceTree = "<group>"; };
		27BDF4C4059F712100CF1DF6 /* simpleCalc.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = simpleCalc.c; sourceTree = "<group>"; };
		27BDF4C5059F712100CF1DF6 /* simpleCalc.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = simpleCalc.h; sourceTree = "<group>"; };
		27D3915A059BEA860035F25F /* Wcalc.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Wcalc.app; sourceTree = BUILT_PRODUCTS_DIR; };
		27FAECF0093FAE5A00D7EE3E /* InspectorController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = InspectorController.h; sourceTree = "<group>"; };
		27FAECF1093FAE5A00D7EE3E /* InspectorController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = InspectorController.m; sourceTree = "<group>"; };
		29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
		29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
		F521993F01F8D2B801A80164 /* main.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; };
		F521994301FA86B001A80164 /* VariableList.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = VariableList.m; sourceTree = "<group>"; };
		F521994601FA8EC401A80164 /* VariableList.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = VariableList.h; sourceTree = "<group>"; };
		F521994801FA927601A80164 /* ChangeLog */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text; path = ChangeLog; sourceTree = "<group>"; };
		F5293926023032E201A80164 /* string_manip.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = string_manip.h; sourceTree = "<group>"; };
		F5293927023032E201A80164 /* string_manip.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = string_manip.c; sourceTree = "<group>"; };
		F5463560020065B401A80164 /* Wred.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Wred.png; sourceTree = "<group>"; };
		F574E09901FD0FD701A80164 /* HistoryList.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = HistoryList.h; sourceTree = "<group>"; };
		F574E09A01FD0FD701A80164 /* HistoryList.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = HistoryList.m; sourceTree = "<group>"; };
		F574E09D01FD122F01A80164 /* historyManager.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = historyManager.h; sourceTree = "<group>"; };
		F574E09E01FD122F01A80164 /* historyManager.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = historyManager.c; sourceTree = "<group>"; };
		F5A165F7030711ED01A80164 /* ConversionList.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ConversionList.h; sourceTree = "<group>"; };
		F5A165F8030711ED01A80164 /* ConversionList.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = ConversionList.m; sourceTree = "<group>"; };
		F5B29D6101F7391001A80164 /* AboutBoxController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = AboutBoxController.h; sourceTree = "<group>"; };
		F5B29D6201F7391001A80164 /* AboutBoxController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = AboutBoxController.m; sourceTree = "<group>"; };
		F5B29D6501F7391601A80164 /* calculator.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = calculator.c; sourceTree = "<group>"; };
		F5B29D6601F7391601A80164 /* calculator.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = calculator.h; sourceTree = "<group>"; };
		F5B29D6901F7392301A80164 /* ErrorController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ErrorController.h; sourceTree = "<group>"; };
		F5B29D6A01F7392301A80164 /* ErrorController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = ErrorController.m; sourceTree = "<group>"; };
		F5B29D6D01F7393A01A80164 /* parser.y */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.yacc; path = parser.y; sourceTree = "<group>"; };
		F5B29D6E01F7393A01A80164 /* scanner.l */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.lex; path = scanner.l; sourceTree = "<group>"; };
		F5B29D6F01F7393A01A80164 /* TheW.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = TheW.icns; sourceTree = "<group>"; };
		F5B29D7301F7394501A80164 /* variables.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = variables.c; sourceTree = "<group>"; };
		F5B29D7401F7394501A80164 /* variables.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = variables.h; sourceTree = "<group>"; };
		F5B29D7701F7395001A80164 /* WcalcController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = WcalcController.h; sourceTree = "<group>"; };
		F5B29D7801F7395001A80164 /* WcalcController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = WcalcController.m; sourceTree = "<group>"; };
		F5B29D7C01F7398A01A80164 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/MainMenu.nib; sourceTree = "<group>"; };
		F5B29D8301F73C2701A80164 /* w.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = w.png; sourceTree = "<group>"; };
		F5D446D00263B46801A80164 /* MyTextField.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MyTextField.h; sourceTree = "<group>"; };
		F5D446D10263B46801A80164 /* MyTextField.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = MyTextField.m; sourceTree = "<group>"; };
		F5DD321602F8F43501A80164 /* conversion.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; path = conversion.c; sourceTree = "<group>"; };
		F5DD321702F8F43501A80164 /* conversion.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = conversion.h; sourceTree = "<group>"; };
		F5DEAE8F021254A501A80164 /* definitions.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = definitions.h; sourceTree = "<group>"; };
		F5EF54D202022A7001A80164 /* theDelegate.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = theDelegate.m; sourceTree = "<group>"; };
		F5EF54D302022A7001A80164 /* theDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = theDelegate.h; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		2773DD4709180D4300DBDA9D /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				27085E2A0EB4D75E009B43DD /* libl.a in Frameworks */,
				27085F000EB512E1009B43DD /* libncurses.dylib in Frameworks */,
				27085F0A0EB51382009B43DD /* libreadline.a in Frameworks */,
				27085F0C0EB5138C009B43DD /* libhistory.a in Frameworks */,
				271AB2670EBB813500250C1C /* libgmp.a in Frameworks */,
				271AB26A0EBB813A00250C1C /* libmpfr.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		27D39155059BEA850035F25F /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				27D39156059BEA850035F25F /* Cocoa.framework in Frameworks */,
				2789AB470EB1877D008DEB99 /* libl.a in Frameworks */,
				271AB2680EBB813500250C1C /* libgmp.a in Frameworks */,
				271AB26B0EBB813A00250C1C /* libmpfr.a in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		080E96DDFE201D6D7F000001 /* Classes */ = {
			isa = PBXGroup;
			children = (
				275D2B5C0C5032E50056D137 /* WcalcService.h */,
				275D2B5D0C5032E50056D137 /* WcalcService.m */,
				F5B29D6101F7391001A80164 /* AboutBoxController.h */,
				F5B29D6201F7391001A80164 /* AboutBoxController.m */,
				F5B29D6901F7392301A80164 /* ErrorController.h */,
				F5B29D6A01F7392301A80164 /* ErrorController.m */,
				F5B29D7701F7395001A80164 /* WcalcController.h */,
				F5B29D7801F7395001A80164 /* WcalcController.m */,
				27BDF4C5059F712100CF1DF6 /* simpleCalc.h */,
				27BDF4C4059F712100CF1DF6 /* simpleCalc.c */,
				F5B29D6001F738F601A80164 /* Shared Code */,
				F521994601FA8EC401A80164 /* VariableList.h */,
				F521994301FA86B001A80164 /* VariableList.m */,
				F574E09901FD0FD701A80164 /* HistoryList.h */,
				F574E09A01FD0FD701A80164 /* HistoryList.m */,
				F5EF54D302022A7001A80164 /* theDelegate.h */,
				F5EF54D202022A7001A80164 /* theDelegate.m */,
				F5D446D00263B46801A80164 /* MyTextField.h */,
				F5D446D10263B46801A80164 /* MyTextField.m */,
				F5A165F7030711ED01A80164 /* ConversionList.h */,
				F5A165F8030711ED01A80164 /* ConversionList.m */,
				27FAECF0093FAE5A00D7EE3E /* InspectorController.h */,
				27FAECF1093FAE5A00D7EE3E /* InspectorController.m */,
				2729A53609B256DA001F07F4 /* PersVarList.h */,
				2729A53709B256DA001F07F4 /* PersVarList.m */,
			);
			name = Classes;
			sourceTree = "<group>";
		};
		1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = {
			isa = PBXGroup;
			children = (
				2789AB460EB1877D008DEB99 /* libl.a */,
				271AB2660EBB813500250C1C /* libgmp.a */,
				271AB2690EBB813A00250C1C /* libmpfr.a */,
				27085F0B0EB5138C009B43DD /* libhistory.a */,
				27085F090EB51382009B43DD /* libreadline.a */,
				27085EFF0EB512E1009B43DD /* libncurses.dylib */,
				1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */,
			);
			name = "Linked Frameworks";
			sourceTree = "<group>";
		};
		1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = {
			isa = PBXGroup;
			children = (
				29B97325FDCFA39411CA2CEA /* Foundation.framework */,
				29B97324FDCFA39411CA2CEA /* AppKit.framework */,
			);
			name = "Other Frameworks";
			sourceTree = "<group>";
		};
		19C28FACFE9D520D11CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				27D3915A059BEA860035F25F /* Wcalc.app */,
				2773DD4F09180D4300DBDA9D /* wcalc */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		29B97314FDCFA39411CA2CEA /* Wcalc */ = {
			isa = PBXGroup;
			children = (
				080E96DDFE201D6D7F000001 /* Classes */,
				29B97315FDCFA39411CA2CEA /* Other Sources */,
				29B97317FDCFA39411CA2CEA /* Resources */,
				29B97323FDCFA39411CA2CEA /* Frameworks */,
				19C28FACFE9D520D11CA2CBB /* Products */,
			);
			name = Wcalc;
			sourceTree = "<group>";
		};
		29B97315FDCFA39411CA2CEA /* Other Sources */ = {
			isa = PBXGroup;
			children = (
				29B97316FDCFA39411CA2CEA /* main.m */,
				F521993F01F8D2B801A80164 /* main.c */,
			);
			name = "Other Sources";
			sourceTree = "<group>";
		};
		29B97317FDCFA39411CA2CEA /* Resources */ = {
			isa = PBXGroup;
			children = (
				F5B29D6F01F7393A01A80164 /* TheW.icns */,
				2789AAD90EB1772B008DEB99 /* NewWcalc.icns */,
				2721CD490869C13400E3BB4D /* Info.plist */,
				F5B29D7B01F7398A01A80164 /* MainMenu.nib */,
				089C165CFE840E0CC02AAC07 /* InfoPlist.strings */,
				F5463560020065B401A80164 /* Wred.png */,
				F5B29D8301F73C2701A80164 /* w.png */,
				F521994801FA927601A80164 /* ChangeLog */,
				277DB27F042F51A5004ACA36 /* NEWS */,
				277DB27D042F5173004ACA36 /* COPYING */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		29B97323FDCFA39411CA2CEA /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */,
				1058C7A2FEA54F0111CA2CBB /* Other Frameworks */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		F5B29D6001F738F601A80164 /* Shared Code */ = {
			isa = PBXGroup;
			children = (
				F5DEAE8F021254A501A80164 /* definitions.h */,
				2729A40009B1ECE5001F07F4 /* add_commas.h */,
				2729A40109B1ECE5001F07F4 /* add_commas.c */,
				F5B29D6601F7391601A80164 /* calculator.h */,
				F5B29D6501F7391601A80164 /* calculator.c */,
				27365609094C642B0043391C /* evalvar.c */,
				2736560A094C642B0043391C /* evalvar.h */,
				273655EF094C63F20043391C /* explain.c */,
				273655F0094C63F20043391C /* explain.h */,
				273655F1094C63F20043391C /* extract_vars.c */,
				273655F2094C63F20043391C /* extract_vars.h */,
				2799DA4303FAD61400CA71DD /* help.h */,
				2799DA4403FAD61400CA71DD /* help.c */,
				27085F020EB51331009B43DD /* iscmd.c */,
				27085F030EB51331009B43DD /* iscmd.h */,
				273655FD094C64170043391C /* isconst.c */,
				273655FE094C64170043391C /* isfunc.c */,
				273655FF094C64170043391C /* isconst.h */,
				27365600094C64170043391C /* isfunc.h */,
				273655E4094C63910043391C /* list.h */,
				273655E5094C63910043391C /* list.c */,
				F5B29D7401F7394501A80164 /* variables.h */,
				F5B29D7301F7394501A80164 /* variables.c */,
				F5B29D6D01F7393A01A80164 /* parser.y */,
				F5B29D6E01F7393A01A80164 /* scanner.l */,
				F5293926023032E201A80164 /* string_manip.h */,
				F5293927023032E201A80164 /* string_manip.c */,
				F5DD321702F8F43501A80164 /* conversion.h */,
				F5DD321602F8F43501A80164 /* conversion.c */,
				275710BC042D0472004ACA36 /* files.h */,
				275710BD042D0472004ACA36 /* files.c */,
				F574E09D01FD122F01A80164 /* historyManager.h */,
				F574E09E01FD122F01A80164 /* historyManager.c */,
				272C375F08C3FDAF009EA18F /* number_formatting.h */,
				272C376008C3FDAF009EA18F /* number_formatting.c */,
				2704376A0C4584640024DB8D /* number.c */,
				2704376B0C4584640024DB8D /* number.h */,
			);
			name = "Shared Code";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		2773DD3309180D4300DBDA9D /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2773DD3409180D4300DBDA9D /* calculator.h in Headers */,
				2773DD3509180D4300DBDA9D /* variables.h in Headers */,
				2773DD3609180D4300DBDA9D /* definitions.h in Headers */,
				2773DD3709180D4300DBDA9D /* string_manip.h in Headers */,
				2773DD3809180D4300DBDA9D /* conversion.h in Headers */,
				2773DD3909180D4300DBDA9D /* help.h in Headers */,
				2773DD3A09180D4300DBDA9D /* files.h in Headers */,
				2773DD3B09180D4300DBDA9D /* number_formatting.h in Headers */,
				2773DD660918117900DBDA9D /* historyManager.h in Headers */,
				273655E8094C63910043391C /* list.h in Headers */,
				273655F8094C63F20043391C /* explain.h in Headers */,
				273655FA094C63F20043391C /* extract_vars.h in Headers */,
				27365607094C64170043391C /* isconst.h in Headers */,
				27365608094C64170043391C /* isfunc.h in Headers */,
				2736560E094C642B0043391C /* evalvar.h in Headers */,
				2729A40409B1ECE5001F07F4 /* add_commas.h in Headers */,
				2704376F0C4584640024DB8D /* number.h in Headers */,
				27085F050EB51331009B43DD /* iscmd.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		27D39128059BEA850035F25F /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				27D39129059BEA850035F25F /* AboutBoxController.h in Headers */,
				27D3912A059BEA850035F25F /* calculator.h in Headers */,
				27D3912B059BEA850035F25F /* ErrorController.h in Headers */,
				27D3912C059BEA850035F25F /* variables.h in Headers */,
				27D3912D059BEA850035F25F /* WcalcController.h in Headers */,
				27D3912E059BEA850035F25F /* VariableList.h in Headers */,
				27D3912F059BEA850035F25F /* HistoryList.h in Headers */,
				27D39130059BEA850035F25F /* historyManager.h in Headers */,
				27D39131059BEA850035F25F /* theDelegate.h in Headers */,
				27D39132059BEA850035F25F /* definitions.h in Headers */,
				27D39133059BEA850035F25F /* string_manip.h in Headers */,
				27D39134059BEA850035F25F /* MyTextField.h in Headers */,
				27D39135059BEA850035F25F /* conversion.h in Headers */,
				27D39136059BEA850035F25F /* ConversionList.h in Headers */,
				27D39137059BEA850035F25F /* help.h in Headers */,
				27D39138059BEA850035F25F /* files.h in Headers */,
				27BDF4C9059F712200CF1DF6 /* simpleCalc.h in Headers */,
				272C376308C3FDAF009EA18F /* number_formatting.h in Headers */,
				27FAECF2093FAE5A00D7EE3E /* InspectorController.h in Headers */,
				273655E6094C63910043391C /* list.h in Headers */,
				273655F4094C63F20043391C /* explain.h in Headers */,
				273655F6094C63F20043391C /* extract_vars.h in Headers */,
				27365603094C64170043391C /* isconst.h in Headers */,
				27365604094C64170043391C /* isfunc.h in Headers */,
				2736560C094C642B0043391C /* evalvar.h in Headers */,
				2729A40209B1ECE5001F07F4 /* add_commas.h in Headers */,
				2729A53809B256DA001F07F4 /* PersVarList.h in Headers */,
				2704376D0C4584640024DB8D /* number.h in Headers */,
				275D2B5E0C5032E50056D137 /* WcalcService.h in Headers */,
				27085F070EB51331009B43DD /* iscmd.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		2773DD3209180D4300DBDA9D /* wcalc */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 2773DD4B09180D4300DBDA9D /* Build configuration list for PBXNativeTarget "wcalc" */;
			buildPhases = (
				2773DD3309180D4300DBDA9D /* Headers */,
				2773DD3C09180D4300DBDA9D /* Sources */,
				2773DD4709180D4300DBDA9D /* Frameworks */,
				2773DD4A09180D4300DBDA9D /* Rez */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = wcalc;
			productName = wcalc;
			productReference = 2773DD4F09180D4300DBDA9D /* wcalc */;
			productType = "com.apple.product-type.tool";
		};
		27D39127059BEA850035F25F /* Wcalc.app */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 27B38FA00859DCBE00C2FE3C /* Build configuration list for PBXNativeTarget "Wcalc.app" */;
			buildPhases = (
				27D39128059BEA850035F25F /* Headers */,
				27D39139059BEA850035F25F /* Resources */,
				27D39142059BEA850035F25F /* Sources */,
				27D39155059BEA850035F25F /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Wcalc.app;
			productName = Wcalc;
			productReference = 27D3915A059BEA860035F25F /* Wcalc.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		29B97313FDCFA39411CA2CEA /* Project object */ = {
			isa = PBXProject;
			attributes = {
				BuildIndependentTargetsInParallel = YES;
			};
			buildConfigurationList = 27B38FA40859DCBE00C2FE3C /* Build configuration list for PBXProject "Wcalc" */;
			compatibilityVersion = "Xcode 3.1";
			hasScannedForEncodings = 1;
			mainGroup = 29B97314FDCFA39411CA2CEA /* Wcalc */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				2773DD3209180D4300DBDA9D /* wcalc */,
				27D39127059BEA850035F25F /* Wcalc.app */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		27D39139059BEA850035F25F /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				27D3913A059BEA850035F25F /* InfoPlist.strings in Resources */,
				27D3913B059BEA850035F25F /* TheW.icns in Resources */,
				27D3913C059BEA850035F25F /* MainMenu.nib in Resources */,
				27D3913D059BEA850035F25F /* w.png in Resources */,
				27D3913E059BEA850035F25F /* ChangeLog in Resources */,
				27D3913F059BEA850035F25F /* Wred.png in Resources */,
				27D39140059BEA850035F25F /* COPYING in Resources */,
				27D39141059BEA850035F25F /* NEWS in Resources */,
				2789AADA0EB1772B008DEB99 /* NewWcalc.icns in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXRezBuildPhase section */
		2773DD4A09180D4300DBDA9D /* Rez */ = {
			isa = PBXRezBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXRezBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		2773DD3C09180D4300DBDA9D /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				2773DD3D09180D4300DBDA9D /* calculator.c in Sources */,
				2773DD3E09180D4300DBDA9D /* variables.c in Sources */,
				2773DD3F09180D4300DBDA9D /* parser.y in Sources */,
				2773DD4009180D4300DBDA9D /* scanner.l in Sources */,
				2773DD4109180D4300DBDA9D /* main.c in Sources */,
				2773DD4209180D4300DBDA9D /* string_manip.c in Sources */,
				2773DD4309180D4300DBDA9D /* conversion.c in Sources */,
				2773DD4409180D4300DBDA9D /* help.c in Sources */,
				2773DD4509180D4300DBDA9D /* files.c in Sources */,
				2773DD4609180D4300DBDA9D /* number_formatting.c in Sources */,
				2773DD650918117800DBDA9D /* historyManager.c in Sources */,
				273655E9094C63910043391C /* list.c in Sources */,
				273655F7094C63F20043391C /* explain.c in Sources */,
				273655F9094C63F20043391C /* extract_vars.c in Sources */,
				27365605094C64170043391C /* isconst.c in Sources */,
				27365606094C64170043391C /* isfunc.c in Sources */,
				2736560D094C642B0043391C /* evalvar.c in Sources */,
				2729A40509B1ECE5001F07F4 /* add_commas.c in Sources */,
				2704376E0C4584640024DB8D /* number.c in Sources */,
				27085F040EB51331009B43DD /* iscmd.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		27D39142059BEA850035F25F /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				27D39143059BEA850035F25F /* main.m in Sources */,
				27D39144059BEA850035F25F /* AboutBoxController.m in Sources */,
				27D39145059BEA850035F25F /* calculator.c in Sources */,
				27D39146059BEA850035F25F /* ErrorController.m in Sources */,
				27D39147059BEA850035F25F /* parser.y in Sources */,
				27D39148059BEA850035F25F /* variables.c in Sources */,
				27D39149059BEA850035F25F /* WcalcController.m in Sources */,
				27D3914A059BEA850035F25F /* VariableList.m in Sources */,
				27D3914B059BEA850035F25F /* HistoryList.m in Sources */,
				27D3914C059BEA850035F25F /* theDelegate.m in Sources */,
				27D3914D059BEA850035F25F /* historyManager.c in Sources */,
				27D3914E059BEA850035F25F /* string_manip.c in Sources */,
				27D3914F059BEA850035F25F /* MyTextField.m in Sources */,
				27D39150059BEA850035F25F /* scanner.l in Sources */,
				27D39151059BEA850035F25F /* conversion.c in Sources */,
				27D39152059BEA850035F25F /* ConversionList.m in Sources */,
				27D39153059BEA850035F25F /* help.c in Sources */,
				27D39154059BEA850035F25F /* files.c in Sources */,
				27BDF4C8059F712200CF1DF6 /* simpleCalc.c in Sources */,
				272C376408C3FDAF009EA18F /* number_formatting.c in Sources */,
				27FAECF3093FAE5A00D7EE3E /* InspectorController.m in Sources */,
				273655E7094C63910043391C /* list.c in Sources */,
				273655F3094C63F20043391C /* explain.c in Sources */,
				273655F5094C63F20043391C /* extract_vars.c in Sources */,
				27365601094C64170043391C /* isconst.c in Sources */,
				27365602094C64170043391C /* isfunc.c in Sources */,
				2736560B094C642B0043391C /* evalvar.c in Sources */,
				2729A40309B1ECE5001F07F4 /* add_commas.c in Sources */,
				2729A53909B256DA001F07F4 /* PersVarList.m in Sources */,
				2704376C0C4584640024DB8D /* number.c in Sources */,
				275D2B5F0C5032E50056D137 /* WcalcService.m in Sources */,
				27085F060EB51331009B43DD /* iscmd.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
		089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				089C165DFE840E0CC02AAC07 /* English */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		F5B29D7B01F7398A01A80164 /* MainMenu.nib */ = {
			isa = PBXVariantGroup;
			children = (
				F5B29D7C01F7398A01A80164 /* English */,
			);
			name = MainMenu.nib;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		275D2DBF0C514B850056D137 /* Deployment Universal */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_OPTIMIZATION_LEVEL = 2;
				GCC_PREPROCESSOR_DEFINITIONS = (
					HAVE_READLINE_HISTORY_H,
					HAVE_READLINE_HISTORY,
					HAVE_LIBREADLINE,
					HAVE_READLINE_READLINE_H,
					"VERSION=\"\\\"$(CURRENT_PROJECT_VERSION)\\\"\"",
				);
				PRODUCT_NAME = wcalc;
			};
			name = "Deployment Universal";
		};
		275D2DC00C514B850056D137 /* Deployment Universal */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = (
					ppc,
					i386,
				);
				INFOPLIST_FILE = Info.plist;
				PRODUCT_NAME = Wcalc;
				WRAPPER_EXTENSION = app;
			};
			name = "Deployment Universal";
		};
		275D2DC10C514B850056D137 /* Deployment Universal */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				COPY_PHASE_STRIP = NO;
				CURRENT_PROJECT_VERSION = 2.4;
				GCC_MODEL_TUNING = "";
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = "VERSION=\"\\\"$(CURRENT_PROJECT_VERSION)\\\"\"";
				GCC_VERSION = "";
				GCC_WARN_CHECK_SWITCH_STATEMENTS = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VALUE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = "\"$(SRCROOT)/../universal-libs/include\"";
				LIBRARY_SEARCH_PATHS = "\"$(SRCROOT)/../universal-libs/lib\"";
				MACOSX_DEPLOYMENT_TARGET = 10.4;
				ONLY_ACTIVE_ARCH = NO;
				OTHER_LDFLAGS = "-Wl,-search_paths_first";
				SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES;
				SDKROOT = macosx10.4;
				STANDARD_C_PLUS_PLUS_LIBRARY_TYPE = static;
				VERSIONING_SYSTEM = "apple-generic";
			};
			name = "Deployment Universal";
		};
		276C6F5D091A9B97005A5B75 /* Development */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_OPTIMIZATION_LEVEL = 2;
				GCC_PREPROCESSOR_DEFINITIONS = (
					HAVE_READLINE_HISTORY_H,
					HAVE_READLINE_HISTORY,
					HAVE_LIBREADLINE,
					HAVE_READLINE_READLINE_H,
					"VERSION=\"\\\"$(CURRENT_PROJECT_VERSION)\\\"\"",
				);
				PRODUCT_NAME = wcalc;
			};
			name = Development;
		};
		276C6F5E091A9B97005A5B75 /* Development */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				INFOPLIST_FILE = Info.plist;
				PRODUCT_NAME = Wcalc;
				WRAPPER_EXTENSION = app;
			};
			name = Development;
		};
		276C6F5F091A9B97005A5B75 /* Development */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				COPY_PHASE_STRIP = NO;
				CURRENT_PROJECT_VERSION = 2.4;
				GCC_CW_ASM_SYNTAX = NO;
				GCC_MODEL_TUNING = "";
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = "VERSION=\"\\\"$(CURRENT_PROJECT_VERSION)\\\"\"";
				GCC_VERSION = "";
				GCC_WARN_CHECK_SWITCH_STATEMENTS = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VALUE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = "\"$(SRCROOT)/../universal-libs/include\"";
				LIBRARY_SEARCH_PATHS = "\"$(SRCROOT)/../universal-libs/lib\"";
				MACOSX_DEPLOYMENT_TARGET = "";
				ONLY_ACTIVE_ARCH = YES;
				OTHER_LDFLAGS = "-Wl,-search_paths_first";
				SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES;
				STANDARD_C_PLUS_PLUS_LIBRARY_TYPE = static;
				STRIP_INSTALLED_PRODUCT = NO;
				VERSIONING_SYSTEM = "apple-generic";
			};
			name = Development;
		};
		277E70AD0D6A0ECD001C912C /* Deployment 10.3.9 */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_OPTIMIZATION_LEVEL = 2;
				GCC_PREPROCESSOR_DEFINITIONS = (
					HAVE_READLINE_HISTORY_H,
					HAVE_READLINE_HISTORY,
					HAVE_LIBREADLINE,
					HAVE_READLINE_READLINE_H,
					"VERSION=\"\\\"$(CURRENT_PROJECT_VERSION)\\\"\"",
				);
				PRODUCT_NAME = wcalc;
			};
			name = "Deployment 10.3.9";
		};
		277E70AE0D6A0ECD001C912C /* Deployment 10.3.9 */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				INFOPLIST_FILE = Info.plist;
				PRODUCT_NAME = Wcalc;
				SDKROOT = macosx10.3.9;
				WRAPPER_EXTENSION = app;
			};
			name = "Deployment 10.3.9";
		};
		277E70AF0D6A0ECD001C912C /* Deployment 10.3.9 */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = ppc;
				COPY_PHASE_STRIP = NO;
				CURRENT_PROJECT_VERSION = 2.4;
				GCC_MODEL_TUNING = "";
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = "VERSION=\"\\\"$(CURRENT_PROJECT_VERSION)\\\"\"";
				GCC_VERSION = "";
				GCC_WARN_CHECK_SWITCH_STATEMENTS = YES;
				GCC_WARN_SHADOW = YES;
				GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VALUE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				HEADER_SEARCH_PATHS = "\"$(SRCROOT)/../10.3.9/include\"";
				LIBRARY_SEARCH_PATHS = "\"$(SRCROOT)/../10.3.9/lib\"";
				MACOSX_DEPLOYMENT_TARGET = 10.3;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_LDFLAGS = "-Wl,-search_paths_first";
				SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES;
				SDKROOT = macosx10.3.9;
				STANDARD_C_PLUS_PLUS_LIBRARY_TYPE = static;
				VERSIONING_SYSTEM = "apple-generic";
			};
			name = "Deployment 10.3.9";
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		2773DD4B09180D4300DBDA9D /* Build configuration list for PBXNativeTarget "wcalc" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				276C6F5D091A9B97005A5B75 /* Development */,
				275D2DBF0C514B850056D137 /* Deployment Universal */,
				277E70AD0D6A0ECD001C912C /* Deployment 10.3.9 */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "Deployment Universal";
		};
		27B38FA00859DCBE00C2FE3C /* Build configuration list for PBXNativeTarget "Wcalc.app" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				276C6F5E091A9B97005A5B75 /* Development */,
				275D2DC00C514B850056D137 /* Deployment Universal */,
				277E70AE0D6A0ECD001C912C /* Deployment 10.3.9 */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "Deployment Universal";
		};
		27B38FA40859DCBE00C2FE3C /* Build configuration list for PBXProject "Wcalc" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				276C6F5F091A9B97005A5B75 /* Development */,
				275D2DC10C514B850056D137 /* Deployment Universal */,
				277E70AF0D6A0ECD001C912C /* Deployment 10.3.9 */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = "Deployment Universal";
		};
/* End XCConfigurationList section */
	};
	rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
}