aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code
diff options
context:
space:
mode:
authorRichard Brooksby2012-07-05 14:38:21 +0100
committerRichard Brooksby2012-07-05 14:38:21 +0100
commitc395667fd7816db3c2309b3ee683c0f3130fff5d (patch)
tree29f6777b64427c06237d84aa01945b5f0d53d995 /mps/code
parenta553fb00533d2ac3b932d7a94b8178d56cf678e9 (diff)
parent1569e667705f93f06ba76cf473281514a1a5a3ee (diff)
downloademacs-c395667fd7816db3c2309b3ee683c0f3130fff5d.tar.gz
emacs-c395667fd7816db3c2309b3ee683c0f3130fff5d.zip
Merging branch/2012-05-21/build-xci6ll -- build support for 64-bit mac os x.
Copied from Perforce Change: 178560 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code')
-rw-r--r--mps/code/global.c4
-rw-r--r--mps/code/misc.h4
-rw-r--r--mps/code/mpmtypes.h1
-rw-r--r--mps/code/mps.c151
-rw-r--r--mps/code/mps.xcodeproj/project.pbxproj3644
-rw-r--r--mps/code/mpstd.h40
-rw-r--r--mps/code/shield.c6
-rw-r--r--mps/code/ssixi6.c111
8 files changed, 3951 insertions, 10 deletions
diff --git a/mps/code/global.c b/mps/code/global.c
index a9090d00372..ede40309f4a 100644
--- a/mps/code/global.c
+++ b/mps/code/global.c
@@ -40,10 +40,6 @@ static RingStruct arenaRing; /* <design/arena/#static.ring> */
40void arenaEnterLock(Arena, int); 40void arenaEnterLock(Arena, int);
41void arenaLeaveLock(Arena, int); 41void arenaLeaveLock(Arena, int);
42 42
43/* ArenaControlPool -- get the control pool */
44
45#define ArenaControlPool(arena) MVPool(&(arena)->controlPoolStruct)
46
47 43
48/* arenaClaimRingLock, arenaReleaseRingLock -- lock/release the arena ring 44/* arenaClaimRingLock, arenaReleaseRingLock -- lock/release the arena ring
49 * 45 *
diff --git a/mps/code/misc.h b/mps/code/misc.h
index 11612fece3d..68f7a33da9e 100644
--- a/mps/code/misc.h
+++ b/mps/code/misc.h
@@ -40,9 +40,9 @@ typedef const struct SrcIdStruct {
40} SrcIdStruct; 40} SrcIdStruct;
41 41
42#define SRCID(id, scmid) \ 42#define SRCID(id, scmid) \
43 static SrcIdStruct FileSrcIdStruct = \ 43 static SrcIdStruct id ## FileSrcIdStruct = \
44 {__FILE__, (scmid), __DATE__, __TIME__}; \ 44 {__FILE__, (scmid), __DATE__, __TIME__}; \
45 SrcId id ## SrcId = &FileSrcIdStruct 45 SrcId id ## SrcId = &id ## FileSrcIdStruct
46 46
47 47
48/* BEGIN and END -- statement brackets 48/* BEGIN and END -- statement brackets
diff --git a/mps/code/mpmtypes.h b/mps/code/mpmtypes.h
index 09a754e09e0..d4f07cb99f4 100644
--- a/mps/code/mpmtypes.h
+++ b/mps/code/mpmtypes.h
@@ -18,6 +18,7 @@
18#include "config.h" /* this must come first: it defines target options */ 18#include "config.h" /* this must come first: it defines target options */
19#include "misc.h" /* miscellaneous non-specific bits and bobs */ 19#include "misc.h" /* miscellaneous non-specific bits and bobs */
20#include "mpslib.h" 20#include "mpslib.h"
21#include "mpstd.h" /* for MPS_T_ULONGEST */
21 22
22#include <stdarg.h> 23#include <stdarg.h>
23#include <stddef.h> 24#include <stddef.h>
diff --git a/mps/code/mps.c b/mps/code/mps.c
new file mode 100644
index 00000000000..900f12877b2
--- /dev/null
+++ b/mps/code/mps.c
@@ -0,0 +1,151 @@
1/* mps.c: MEMORY POOL SYSTEM ALL-IN-ONE TRANSLATION UNIT
2 *
3 * $Id$
4 * Copyright (C) 2012 Ravenbrook Limited. See end of file for license.
5 *
6 * .purpose: This file can be compiled to create the complete MPS library in
7 * a single compilation, allowing the compiler to apply global optimizations
8 * and inlining effectively. On most modern compilers this is also faster
9 * than compiling each file separately.
10 *
11 * .purpose.universal: This file also allows simple building of a Mac OS X
12 * "universal" (multiple architecture) binary when the set of source files
13 * differs by architecture. It may work for other platforms in a similar
14 * manner.
15 *
16 * .rule.simple: This file should never be more than a simple list of
17 * includes of other source code, with ifdefs for platform configuration,
18 * which closely mirror those in the makefiles.
19 */
20
21/* MPM Core */
22
23#include "mpsi.c"
24#include "mpm.c"
25#include "arenavm.c"
26#include "arenacl.c"
27#include "arena.c"
28#include "global.c"
29#include "locus.c"
30#include "tract.c"
31#include "walk.c"
32#include "reserv.c"
33#include "protocol.c"
34#include "pool.c"
35#include "poolabs.c"
36#include "trace.c"
37#include "traceanc.c"
38#include "root.c"
39#include "seg.c"
40#include "format.c"
41#include "buffer.c"
42#include "ref.c"
43#include "bt.c"
44#include "ring.c"
45#include "shield.c"
46#include "ld.c"
47#include "event.c"
48#include "sac.c"
49#include "message.c"
50#include "poolmrg.c"
51#include "poolmfs.c"
52#include "poolmv.c"
53#include "dbgpool.c"
54#include "dbgpooli.c"
55#include "boot.c"
56#include "meter.c"
57#include "splay.c"
58#include "cbs.c"
59#include "diag.c"
60#include "version.c"
61
62/* Additional pool classes */
63
64#include "poolamc.c"
65#include "poolams.c"
66#include "poolamsi.c"
67#include "poolawl.c"
68#include "poollo.c"
69#include "poolsnc.c"
70#include "pooln.c"
71#include "poolmvff.c"
72
73/* ANSI Plinth */
74
75#include "mpsliban.c"
76#include "mpsioan.c"
77
78/* Platform interface */
79
80#include "mpstd.h"
81
82#if defined(MPS_PF_XCI3LL)
83
84#include "lockix.c"
85#include "than.c"
86#include "vmix.c"
87#include "protix.c"
88#include "protsgix.c"
89#include "prmcan.c"
90#include "span.c"
91#include "ssixi3.c"
92
93#elif defined(MPS_PF_XCI6LL)
94
95#include "lockix.c"
96#include "than.c"
97#include "vmix.c"
98#include "protix.c"
99#include "protsgix.c"
100#include "prmcan.c"
101#include "span.c"
102#include "ssixi6.c"
103
104#else
105
106#error "Unknown platform -- can't determine platform specific parts."
107
108#endif
109
110
111
112/* C. COPYRIGHT AND LICENSE
113 *
114 * Copyright (C) 2012 Ravenbrook Limited <http://www.ravenbrook.com/>.
115 * All rights reserved. This is an open source license. Contact
116 * Ravenbrook for commercial licensing options.
117 *
118 * Redistribution and use in source and binary forms, with or without
119 * modification, are permitted provided that the following conditions are
120 * met:
121 *
122 * 1. Redistributions of source code must retain the above copyright
123 * notice, this list of conditions and the following disclaimer.
124 *
125 * 2. Redistributions in binary form must reproduce the above copyright
126 * notice, this list of conditions and the following disclaimer in the
127 * documentation and/or other materials provided with the distribution.
128 *
129 * 3. Redistributions in any form must be accompanied by information on how
130 * to obtain complete source code for this software and any accompanying
131 * software that uses this software. The source code must either be
132 * included in the distribution or be available for no more than the cost
133 * of distribution plus a nominal fee, and must be freely redistributable
134 * under reasonable conditions. For an executable file, complete source
135 * code means the source code for all modules it contains. It does not
136 * include source code for modules or files that typically accompany the
137 * major components of the operating system on which the executable file
138 * runs.
139 *
140 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
141 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
142 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
143 * PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE
144 * COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
145 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
146 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
147 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
148 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
149 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
150 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
151 */
diff --git a/mps/code/mps.xcodeproj/project.pbxproj b/mps/code/mps.xcodeproj/project.pbxproj
new file mode 100644
index 00000000000..8f71736f689
--- /dev/null
+++ b/mps/code/mps.xcodeproj/project.pbxproj
@@ -0,0 +1,3644 @@
1// !$*UTF8*$!
2{
3 archiveVersion = 1;
4 classes = {
5 };
6 objectVersion = 46;
7 objects = {
8
9/* Begin PBXAggregateTarget section */
10 3104AFF1156D37A0000A585A /* all */ = {
11 isa = PBXAggregateTarget;
12 buildConfigurationList = 3104AFF2156D37A0000A585A /* Build configuration list for PBXAggregateTarget "all" */;
13 buildPhases = (
14 );
15 dependencies = (
16 3104AFF6156D37BC000A585A /* PBXTargetDependency */,
17 3114A6D5156E9839001E0AA3 /* PBXTargetDependency */,
18 3114A6B9156E9763001E0AA3 /* PBXTargetDependency */,
19 3114A6A7156E9739001E0AA3 /* PBXTargetDependency */,
20 3114A68D156E9686001E0AA3 /* PBXTargetDependency */,
21 3114A677156E961C001E0AA3 /* PBXTargetDependency */,
22 3114A65B156E95B4001E0AA3 /* PBXTargetDependency */,
23 3114A644156E94FB001E0AA3 /* PBXTargetDependency */,
24 3114A62E156E94AA001E0AA3 /* PBXTargetDependency */,
25 3114A612156E943B001E0AA3 /* PBXTargetDependency */,
26 3114A600156E940A001E0AA3 /* PBXTargetDependency */,
27 3114A5EA156E93C4001E0AA3 /* PBXTargetDependency */,
28 3114A5CC156E932C001E0AA3 /* PBXTargetDependency */,
29 3114A5B6156E92DC001E0AA3 /* PBXTargetDependency */,
30 3114A5A0156E915A001E0AA3 /* PBXTargetDependency */,
31 31D6009D156D404B00337B26 /* PBXTargetDependency */,
32 31D60087156D3FE600337B26 /* PBXTargetDependency */,
33 31D60063156D3F5C00337B26 /* PBXTargetDependency */,
34 31D6004F156D3EF700337B26 /* PBXTargetDependency */,
35 3104B04A156D3AE4000A585A /* PBXTargetDependency */,
36 3104B02D156D39DF000A585A /* PBXTargetDependency */,
37 3104B01D156D398B000A585A /* PBXTargetDependency */,
38 3104B004156D37CD000A585A /* PBXTargetDependency */,
39 3104B002156D37CB000A585A /* PBXTargetDependency */,
40 3104B000156D37C8000A585A /* PBXTargetDependency */,
41 3104AFFE156D37C6000A585A /* PBXTargetDependency */,
42 3104AFFC156D37C3000A585A /* PBXTargetDependency */,
43 3104AFFA156D37C1000A585A /* PBXTargetDependency */,
44 3104AFF8156D37BE000A585A /* PBXTargetDependency */,
45 31D60022156D3CF200337B26 /* PBXTargetDependency */,
46 31D60034156D3D5A00337B26 /* PBXTargetDependency */,
47 );
48 name = all;
49 productName = all;
50 };
51/* End PBXAggregateTarget section */
52
53/* Begin PBXBuildFile section */
54 3104AFBF156D3591000A585A /* apss.c in Sources */ = {isa = PBXBuildFile; fileRef = 3104AFBE156D3591000A585A /* apss.c */; };
55 3104AFC2156D35B2000A585A /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
56 3104AFC3156D35C3000A585A /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
57 3104AFD4156D35F7000A585A /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
58 3104AFD5156D35FB000A585A /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
59 3104AFD8156D3607000A585A /* sacss.c in Sources */ = {isa = PBXBuildFile; fileRef = 3104AFD6156D3602000A585A /* sacss.c */; };
60 3104AFE9156D3690000A585A /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
61 3104AFEA156D3697000A585A /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
62 3104AFEC156D36A5000A585A /* amcsshe.c in Sources */ = {isa = PBXBuildFile; fileRef = 3104AFEB156D36A5000A585A /* amcsshe.c */; };
63 3104AFED156D374A000A585A /* fmthe.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAE4156BE6D500753214 /* fmthe.c */; };
64 3104AFEE156D374D000A585A /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
65 3104AFEF156D3753000A585A /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
66 3104AFF0156D3756000A585A /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
67 3104B016156D390B000A585A /* amsss.c in Sources */ = {isa = PBXBuildFile; fileRef = 3104B015156D390B000A585A /* amsss.c */; };
68 3104B017156D3915000A585A /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
69 3104B018156D3953000A585A /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
70 3104B019156D3960000A585A /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
71 3104B01A156D396E000A585A /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
72 3104B01B156D3973000A585A /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
73 3104B02E156D39E2000A585A /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
74 3104B031156D39FD000A585A /* fmthe.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAE4156BE6D500753214 /* fmthe.c */; };
75 3104B032156D3A00000A585A /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
76 3104B033156D3A05000A585A /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
77 3104B034156D3A2C000A585A /* amssshe.c in Sources */ = {isa = PBXBuildFile; fileRef = 3104B02F156D39F2000A585A /* amssshe.c */; };
78 3104B035156D3A39000A585A /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
79 3104B036156D3A49000A585A /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
80 3104B04E156D3AFE000A585A /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
81 3104B04F156D3B09000A585A /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
82 3104B050156D3B09000A585A /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
83 3104B051156D3B09000A585A /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
84 3114A59B156E914B001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
85 3114A59C156E914F001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
86 3114A5A2156E9168001E0AA3 /* locv.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A5A1156E9168001E0AA3 /* locv.c */; };
87 3114A5B1156E92C8001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
88 3114A5B2156E92CB001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
89 3114A5B8156E92F1001E0AA3 /* qs.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A5B7156E92F0001E0AA3 /* qs.c */; };
90 3114A5C7156E9322001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
91 3114A5C8156E9322001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
92 3114A5CE156E9369001E0AA3 /* finalcv.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A5CD156E9369001E0AA3 /* finalcv.c */; };
93 3114A5CF156E9381001E0AA3 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
94 3114A5D0156E9381001E0AA3 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
95 3114A5D1156E9381001E0AA3 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
96 3114A5E0156E93AE001E0AA3 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
97 3114A5E1156E93AE001E0AA3 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
98 3114A5E2156E93AE001E0AA3 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
99 3114A5E3156E93AE001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
100 3114A5E4156E93AE001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
101 3114A5E6156E93B9001E0AA3 /* finaltest.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A5E5156E93B9001E0AA3 /* finaltest.c */; };
102 3114A5F9156E93F3001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
103 3114A5FA156E93F3001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
104 3114A5FC156E93FC001E0AA3 /* arenacv.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A5FB156E93FC001E0AA3 /* arenacv.c */; };
105 3114A615156E944E001E0AA3 /* bttest.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A613156E944A001E0AA3 /* bttest.c */; };
106 3114A616156E9455001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
107 3114A617156E946B001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
108 3114A626156E948C001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
109 3114A627156E9490001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
110 3114A62A156E949E001E0AA3 /* teletest.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A628156E949A001E0AA3 /* teletest.c */; };
111 3114A63E156E94EA001E0AA3 /* abqtest.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A63D156E94EA001E0AA3 /* abqtest.c */; };
112 3114A63F156E94F0001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
113 3114A640156E94F0001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
114 3114A646156E9525001E0AA3 /* abq.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A645156E9525001E0AA3 /* abq.c */; };
115 3114A657156E95A6001E0AA3 /* cbstest.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A656156E95A6001E0AA3 /* cbstest.c */; };
116 3114A66E156E95F2001E0AA3 /* btcv.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A66C156E95EB001E0AA3 /* btcv.c */; };
117 3114A66F156E95F2001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
118 3114A670156E95F2001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
119 3114A672156E95F6001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
120 3114A673156E95F6001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
121 3114A687156E9674001E0AA3 /* mv2test.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A686156E9674001E0AA3 /* mv2test.c */; };
122 3114A688156E967C001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
123 3114A68F156E96B6001E0AA3 /* poolmv2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A68E156E96B6001E0AA3 /* poolmv2.c */; };
124 3114A690156E96CE001E0AA3 /* abq.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A645156E9525001E0AA3 /* abq.c */; };
125 3114A6A1156E9729001E0AA3 /* messtest.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A69F156E9725001E0AA3 /* messtest.c */; };
126 3114A6A2156E972D001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
127 3114A6A3156E972D001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
128 3114A6BC156E976C001E0AA3 /* walkt0.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A6BA156E9768001E0AA3 /* walkt0.c */; };
129 3114A6BD156E9771001E0AA3 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
130 3114A6BE156E9771001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
131 3114A6BF156E97B8001E0AA3 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
132 3114A6C0156E97B8001E0AA3 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
133 3114A6C1156E97B8001E0AA3 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
134 3114A6D1156E9829001E0AA3 /* eventcnv.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A6D0156E9829001E0AA3 /* eventcnv.c */; };
135 3114A6D7156E9923001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
136 3114A6DA156E9950001E0AA3 /* eventpro.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A6D9156E9950001E0AA3 /* eventpro.c */; };
137 3114A6DC156E995A001E0AA3 /* table.c in Sources */ = {isa = PBXBuildFile; fileRef = 3114A6DB156E995A001E0AA3 /* table.c */; };
138 3114A6DD156E9A0F001E0AA3 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
139 3124CAC3156BE40100753214 /* awlut.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC2156BE40100753214 /* awlut.c */; };
140 3124CAC4156BE40D00753214 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
141 3124CAC5156BE41700753214 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
142 3124CAC8156BE48D00753214 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
143 3124CAC9156BE48D00753214 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
144 3124CACD156BE4C200753214 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
145 3124CADF156BE65900753214 /* mpsicv.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CADE156BE65900753214 /* mpsicv.c */; };
146 3124CAE0156BE66B00753214 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
147 3124CAE1156BE67000753214 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
148 3124CAE2156BE68E00753214 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
149 3124CAE3156BE69B00753214 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
150 3124CAE5156BE6D500753214 /* fmthe.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAE4156BE6D500753214 /* fmthe.c */; };
151 3124CAE6156BE6F700753214 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
152 3124CAF6156BE81100753214 /* amcss.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAF5156BE81100753214 /* amcss.c */; };
153 3124CAF7156BE82000753214 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
154 3124CAF8156BE82000753214 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
155 3124CAF9156BE82000753214 /* fmthe.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAE4156BE6D500753214 /* fmthe.c */; };
156 3124CAFA156BE82000753214 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
157 3124CAFB156BE82000753214 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
158 3124CAFC156BE82900753214 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
159 3150AE53156ABA2500A6E22A /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
160 31A47BA4156C1E130039B1C2 /* mps.c in Sources */ = {isa = PBXBuildFile; fileRef = 31A47BA3156C1E130039B1C2 /* mps.c */; };
161 31D60007156D3C6200337B26 /* segsmss.c in Sources */ = {isa = PBXBuildFile; fileRef = 31D60006156D3C5F00337B26 /* segsmss.c */; };
162 31D60008156D3C7400337B26 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
163 31D60018156D3CC300337B26 /* awluthe.c in Sources */ = {isa = PBXBuildFile; fileRef = 31D60017156D3CC300337B26 /* awluthe.c */; };
164 31D60019156D3CCC00337B26 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
165 31D6001A156D3CDC00337B26 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
166 31D6001B156D3CDC00337B26 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
167 31D6001C156D3CDC00337B26 /* fmthe.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAE4156BE6D500753214 /* fmthe.c */; };
168 31D6001D156D3CDC00337B26 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
169 31D6001E156D3CDF00337B26 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
170 31D60035156D3DF300337B26 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
171 31D60038156D3E3000337B26 /* lockcov.c in Sources */ = {isa = PBXBuildFile; fileRef = 31D60036156D3E0200337B26 /* lockcov.c */; };
172 31D60039156D3E3E00337B26 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
173 31D60048156D3ECF00337B26 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
174 31D60049156D3ED200337B26 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
175 31D6004B156D3EE600337B26 /* poolncv.c in Sources */ = {isa = PBXBuildFile; fileRef = 31D6004A156D3EE600337B26 /* poolncv.c */; };
176 31D6005F156D3F4A00337B26 /* zcoll.c in Sources */ = {isa = PBXBuildFile; fileRef = 31D6005E156D3F4A00337B26 /* zcoll.c */; };
177 31D60060156D3F5000337B26 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
178 31D60069156D3F7200337B26 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
179 31D6006A156D3F7200337B26 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
180 31D6006B156D3F7200337B26 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
181 31D6006C156D3F7200337B26 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
182 31D6007D156D3FCF00337B26 /* zmess.c in Sources */ = {isa = PBXBuildFile; fileRef = 31D6007B156D3FCC00337B26 /* zmess.c */; };
183 31D6007E156D3FD700337B26 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
184 31D6007F156D3FD700337B26 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
185 31D60080156D3FD700337B26 /* fmthe.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAE4156BE6D500753214 /* fmthe.c */; };
186 31D60081156D3FD700337B26 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
187 31D60082156D3FD700337B26 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
188 31D60083156D3FDB00337B26 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
189 31D6009A156D404000337B26 /* steptest.c in Sources */ = {isa = PBXBuildFile; fileRef = 31D60098156D403C00337B26 /* steptest.c */; };
190 31D6009B156D404400337B26 /* libmps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 31EEABFB156AAF9D00714D05 /* libmps.a */; };
191 31D6009E156D406400337B26 /* fmtdy.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC6156BE48D00753214 /* fmtdy.c */; };
192 31D6009F156D406400337B26 /* fmtdytst.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CAC7156BE48D00753214 /* fmtdytst.c */; };
193 31D600A0156D406400337B26 /* fmtno.c in Sources */ = {isa = PBXBuildFile; fileRef = 3124CACC156BE4C200753214 /* fmtno.c */; };
194 31D600A1156D406400337B26 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
195 31EEAC75156AB58E00714D05 /* mpmss.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC74156AB58E00714D05 /* mpmss.c */; };
196 31EEAC9F156AB73400714D05 /* testlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 31EEAC9E156AB73400714D05 /* testlib.c */; };
197/* End PBXBuildFile section */
198
199/* Begin PBXContainerItemProxy section */
200 3104AFC0156D35AE000A585A /* PBXContainerItemProxy */ = {
201 isa = PBXContainerItemProxy;
202 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
203 proxyType = 1;
204 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
205 remoteInfo = mps;
206 };
207 3104AFD2156D35F2000A585A /* PBXContainerItemProxy */ = {
208 isa = PBXContainerItemProxy;
209 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
210 proxyType = 1;
211 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
212 remoteInfo = mps;
213 };
214 3104AFE7156D368D000A585A /* PBXContainerItemProxy */ = {
215 isa = PBXContainerItemProxy;
216 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
217 proxyType = 1;
218 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
219 remoteInfo = mps;
220 };
221 3104AFF5156D37BC000A585A /* PBXContainerItemProxy */ = {
222 isa = PBXContainerItemProxy;
223 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
224 proxyType = 1;
225 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
226 remoteInfo = mps;
227 };
228 3104AFF7156D37BE000A585A /* PBXContainerItemProxy */ = {
229 isa = PBXContainerItemProxy;
230 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
231 proxyType = 1;
232 remoteGlobalIDString = 3124CAEA156BE7F300753214;
233 remoteInfo = amcss;
234 };
235 3104AFF9156D37C1000A585A /* PBXContainerItemProxy */ = {
236 isa = PBXContainerItemProxy;
237 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
238 proxyType = 1;
239 remoteGlobalIDString = 3104AFB2156D357B000A585A;
240 remoteInfo = apss;
241 };
242 3104AFFB156D37C3000A585A /* PBXContainerItemProxy */ = {
243 isa = PBXContainerItemProxy;
244 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
245 proxyType = 1;
246 remoteGlobalIDString = 3124CAB7156BE3EC00753214;
247 remoteInfo = awlut;
248 };
249 3104AFFD156D37C6000A585A /* PBXContainerItemProxy */ = {
250 isa = PBXContainerItemProxy;
251 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
252 proxyType = 1;
253 remoteGlobalIDString = 31EEAC64156AB52600714D05;
254 remoteInfo = mpmss;
255 };
256 3104AFFF156D37C8000A585A /* PBXContainerItemProxy */ = {
257 isa = PBXContainerItemProxy;
258 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
259 proxyType = 1;
260 remoteGlobalIDString = 3124CAD3156BE64A00753214;
261 remoteInfo = mpsicv;
262 };
263 3104B001156D37CB000A585A /* PBXContainerItemProxy */ = {
264 isa = PBXContainerItemProxy;
265 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
266 proxyType = 1;
267 remoteGlobalIDString = 3104AFC7156D35E2000A585A;
268 remoteInfo = sacss;
269 };
270 3104B003156D37CD000A585A /* PBXContainerItemProxy */ = {
271 isa = PBXContainerItemProxy;
272 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
273 proxyType = 1;
274 remoteGlobalIDString = 3104AFDC156D3681000A585A;
275 remoteInfo = amcsshe;
276 };
277 3104B013156D38FA000A585A /* PBXContainerItemProxy */ = {
278 isa = PBXContainerItemProxy;
279 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
280 proxyType = 1;
281 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
282 remoteInfo = mps;
283 };
284 3104B01C156D398B000A585A /* PBXContainerItemProxy */ = {
285 isa = PBXContainerItemProxy;
286 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
287 proxyType = 1;
288 remoteGlobalIDString = 3104B008156D38F3000A585A;
289 remoteInfo = amsss;
290 };
291 3104B02C156D39DF000A585A /* PBXContainerItemProxy */ = {
292 isa = PBXContainerItemProxy;
293 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
294 proxyType = 1;
295 remoteGlobalIDString = 3104B021156D39D4000A585A;
296 remoteInfo = amssshe;
297 };
298 3104B037156D3A56000A585A /* PBXContainerItemProxy */ = {
299 isa = PBXContainerItemProxy;
300 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
301 proxyType = 1;
302 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
303 remoteInfo = mps;
304 };
305 3104B047156D3ADE000A585A /* PBXContainerItemProxy */ = {
306 isa = PBXContainerItemProxy;
307 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
308 proxyType = 1;
309 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
310 remoteInfo = mps;
311 };
312 3104B049156D3AE4000A585A /* PBXContainerItemProxy */ = {
313 isa = PBXContainerItemProxy;
314 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
315 proxyType = 1;
316 remoteGlobalIDString = 3104B03C156D3AD7000A585A;
317 remoteInfo = segsmss;
318 };
319 3114A59D156E9156001E0AA3 /* PBXContainerItemProxy */ = {
320 isa = PBXContainerItemProxy;
321 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
322 proxyType = 1;
323 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
324 remoteInfo = mps;
325 };
326 3114A59F156E915A001E0AA3 /* PBXContainerItemProxy */ = {
327 isa = PBXContainerItemProxy;
328 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
329 proxyType = 1;
330 remoteGlobalIDString = 3114A58F156E913C001E0AA3;
331 remoteInfo = locv;
332 };
333 3114A5B3156E92D8001E0AA3 /* PBXContainerItemProxy */ = {
334 isa = PBXContainerItemProxy;
335 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
336 proxyType = 1;
337 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
338 remoteInfo = mps;
339 };
340 3114A5B5156E92DC001E0AA3 /* PBXContainerItemProxy */ = {
341 isa = PBXContainerItemProxy;
342 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
343 proxyType = 1;
344 remoteGlobalIDString = 3114A5A6156E92C0001E0AA3;
345 remoteInfo = qs;
346 };
347 3114A5C9156E9328001E0AA3 /* PBXContainerItemProxy */ = {
348 isa = PBXContainerItemProxy;
349 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
350 proxyType = 1;
351 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
352 remoteInfo = mps;
353 };
354 3114A5CB156E932C001E0AA3 /* PBXContainerItemProxy */ = {
355 isa = PBXContainerItemProxy;
356 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
357 proxyType = 1;
358 remoteGlobalIDString = 3114A5BC156E9315001E0AA3;
359 remoteInfo = finalcv;
360 };
361 3114A5E7156E93BF001E0AA3 /* PBXContainerItemProxy */ = {
362 isa = PBXContainerItemProxy;
363 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
364 proxyType = 1;
365 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
366 remoteInfo = mps;
367 };
368 3114A5E9156E93C4001E0AA3 /* PBXContainerItemProxy */ = {
369 isa = PBXContainerItemProxy;
370 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
371 proxyType = 1;
372 remoteGlobalIDString = 3114A5D5156E93A0001E0AA3;
373 remoteInfo = finaltest;
374 };
375 3114A5FD156E9406001E0AA3 /* PBXContainerItemProxy */ = {
376 isa = PBXContainerItemProxy;
377 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
378 proxyType = 1;
379 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
380 remoteInfo = mps;
381 };
382 3114A5FF156E940A001E0AA3 /* PBXContainerItemProxy */ = {
383 isa = PBXContainerItemProxy;
384 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
385 proxyType = 1;
386 remoteGlobalIDString = 3114A5EE156E93E7001E0AA3;
387 remoteInfo = arenacv;
388 };
389 3114A60F156E9438001E0AA3 /* PBXContainerItemProxy */ = {
390 isa = PBXContainerItemProxy;
391 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
392 proxyType = 1;
393 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
394 remoteInfo = mps;
395 };
396 3114A611156E943B001E0AA3 /* PBXContainerItemProxy */ = {
397 isa = PBXContainerItemProxy;
398 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
399 proxyType = 1;
400 remoteGlobalIDString = 3114A604156E9430001E0AA3;
401 remoteInfo = bttest;
402 };
403 3114A62B156E94A6001E0AA3 /* PBXContainerItemProxy */ = {
404 isa = PBXContainerItemProxy;
405 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
406 proxyType = 1;
407 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
408 remoteInfo = mps;
409 };
410 3114A62D156E94AA001E0AA3 /* PBXContainerItemProxy */ = {
411 isa = PBXContainerItemProxy;
412 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
413 proxyType = 1;
414 remoteGlobalIDString = 3114A61B156E9485001E0AA3;
415 remoteInfo = teletest;
416 };
417 3114A641156E94F8001E0AA3 /* PBXContainerItemProxy */ = {
418 isa = PBXContainerItemProxy;
419 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
420 proxyType = 1;
421 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
422 remoteInfo = mps;
423 };
424 3114A643156E94FB001E0AA3 /* PBXContainerItemProxy */ = {
425 isa = PBXContainerItemProxy;
426 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
427 proxyType = 1;
428 remoteGlobalIDString = 3114A632156E94DB001E0AA3;
429 remoteInfo = abqtest;
430 };
431 3114A658156E95B1001E0AA3 /* PBXContainerItemProxy */ = {
432 isa = PBXContainerItemProxy;
433 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
434 proxyType = 1;
435 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
436 remoteInfo = mps;
437 };
438 3114A65A156E95B4001E0AA3 /* PBXContainerItemProxy */ = {
439 isa = PBXContainerItemProxy;
440 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
441 proxyType = 1;
442 remoteGlobalIDString = 3114A64B156E9596001E0AA3;
443 remoteInfo = cbstest;
444 };
445 3114A674156E9619001E0AA3 /* PBXContainerItemProxy */ = {
446 isa = PBXContainerItemProxy;
447 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
448 proxyType = 1;
449 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
450 remoteInfo = mps;
451 };
452 3114A676156E961C001E0AA3 /* PBXContainerItemProxy */ = {
453 isa = PBXContainerItemProxy;
454 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
455 proxyType = 1;
456 remoteGlobalIDString = 3114A661156E95D9001E0AA3;
457 remoteInfo = btcv;
458 };
459 3114A68A156E9682001E0AA3 /* PBXContainerItemProxy */ = {
460 isa = PBXContainerItemProxy;
461 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
462 proxyType = 1;
463 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
464 remoteInfo = mps;
465 };
466 3114A68C156E9686001E0AA3 /* PBXContainerItemProxy */ = {
467 isa = PBXContainerItemProxy;
468 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
469 proxyType = 1;
470 remoteGlobalIDString = 3114A67B156E9668001E0AA3;
471 remoteInfo = mv2test;
472 };
473 3114A6A4156E9735001E0AA3 /* PBXContainerItemProxy */ = {
474 isa = PBXContainerItemProxy;
475 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
476 proxyType = 1;
477 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
478 remoteInfo = mps;
479 };
480 3114A6A6156E9739001E0AA3 /* PBXContainerItemProxy */ = {
481 isa = PBXContainerItemProxy;
482 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
483 proxyType = 1;
484 remoteGlobalIDString = 3114A694156E971B001E0AA3;
485 remoteInfo = messtest;
486 };
487 3114A6B6156E975E001E0AA3 /* PBXContainerItemProxy */ = {
488 isa = PBXContainerItemProxy;
489 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
490 proxyType = 1;
491 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
492 remoteInfo = mps;
493 };
494 3114A6B8156E9763001E0AA3 /* PBXContainerItemProxy */ = {
495 isa = PBXContainerItemProxy;
496 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
497 proxyType = 1;
498 remoteGlobalIDString = 3114A6AB156E9759001E0AA3;
499 remoteInfo = walkt0;
500 };
501 3114A6D2156E9834001E0AA3 /* PBXContainerItemProxy */ = {
502 isa = PBXContainerItemProxy;
503 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
504 proxyType = 1;
505 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
506 remoteInfo = mps;
507 };
508 3114A6D4156E9839001E0AA3 /* PBXContainerItemProxy */ = {
509 isa = PBXContainerItemProxy;
510 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
511 proxyType = 1;
512 remoteGlobalIDString = 3114A6C5156E9815001E0AA3;
513 remoteInfo = eventcnv;
514 };
515 31A47BA9156C210D0039B1C2 /* PBXContainerItemProxy */ = {
516 isa = PBXContainerItemProxy;
517 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
518 proxyType = 1;
519 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
520 remoteInfo = mps;
521 };
522 31A47BAB156C21120039B1C2 /* PBXContainerItemProxy */ = {
523 isa = PBXContainerItemProxy;
524 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
525 proxyType = 1;
526 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
527 remoteInfo = mps;
528 };
529 31A47BAD156C21170039B1C2 /* PBXContainerItemProxy */ = {
530 isa = PBXContainerItemProxy;
531 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
532 proxyType = 1;
533 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
534 remoteInfo = mps;
535 };
536 31A47BAF156C211B0039B1C2 /* PBXContainerItemProxy */ = {
537 isa = PBXContainerItemProxy;
538 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
539 proxyType = 1;
540 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
541 remoteInfo = mps;
542 };
543 31D6001F156D3CEC00337B26 /* PBXContainerItemProxy */ = {
544 isa = PBXContainerItemProxy;
545 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
546 proxyType = 1;
547 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
548 remoteInfo = mps;
549 };
550 31D60021156D3CF200337B26 /* PBXContainerItemProxy */ = {
551 isa = PBXContainerItemProxy;
552 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
553 proxyType = 1;
554 remoteGlobalIDString = 31D6000C156D3CB200337B26;
555 remoteInfo = awluthe;
556 };
557 31D60031156D3D5300337B26 /* PBXContainerItemProxy */ = {
558 isa = PBXContainerItemProxy;
559 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
560 proxyType = 1;
561 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
562 remoteInfo = mps;
563 };
564 31D60033156D3D5A00337B26 /* PBXContainerItemProxy */ = {
565 isa = PBXContainerItemProxy;
566 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
567 proxyType = 1;
568 remoteGlobalIDString = 31D60026156D3D3E00337B26;
569 remoteInfo = lockcov;
570 };
571 31D6004C156D3EF000337B26 /* PBXContainerItemProxy */ = {
572 isa = PBXContainerItemProxy;
573 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
574 proxyType = 1;
575 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
576 remoteInfo = mps;
577 };
578 31D6004E156D3EF700337B26 /* PBXContainerItemProxy */ = {
579 isa = PBXContainerItemProxy;
580 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
581 proxyType = 1;
582 remoteGlobalIDString = 31D6003D156D3EC700337B26;
583 remoteInfo = poolncv;
584 };
585 31D60062156D3F5C00337B26 /* PBXContainerItemProxy */ = {
586 isa = PBXContainerItemProxy;
587 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
588 proxyType = 1;
589 remoteGlobalIDString = 31D60053156D3F3500337B26;
590 remoteInfo = zcoll;
591 };
592 31D60064156D3F5F00337B26 /* PBXContainerItemProxy */ = {
593 isa = PBXContainerItemProxy;
594 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
595 proxyType = 1;
596 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
597 remoteInfo = mps;
598 };
599 31D60084156D3FE100337B26 /* PBXContainerItemProxy */ = {
600 isa = PBXContainerItemProxy;
601 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
602 proxyType = 1;
603 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
604 remoteInfo = mps;
605 };
606 31D60086156D3FE600337B26 /* PBXContainerItemProxy */ = {
607 isa = PBXContainerItemProxy;
608 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
609 proxyType = 1;
610 remoteGlobalIDString = 31D60070156D3FBC00337B26;
611 remoteInfo = zmess;
612 };
613 31D60096156D403500337B26 /* PBXContainerItemProxy */ = {
614 isa = PBXContainerItemProxy;
615 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
616 proxyType = 1;
617 remoteGlobalIDString = 31EEABFA156AAF9D00714D05;
618 remoteInfo = mps;
619 };
620 31D6009C156D404B00337B26 /* PBXContainerItemProxy */ = {
621 isa = PBXContainerItemProxy;
622 containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */;
623 proxyType = 1;
624 remoteGlobalIDString = 31D6008B156D402900337B26;
625 remoteInfo = steptest;
626 };
627/* End PBXContainerItemProxy section */
628
629/* Begin PBXCopyFilesBuildPhase section */
630 3104AFB1156D357B000A585A /* CopyFiles */ = {
631 isa = PBXCopyFilesBuildPhase;
632 buildActionMask = 2147483647;
633 dstPath = /usr/share/man/man1/;
634 dstSubfolderSpec = 0;
635 files = (
636 );
637 runOnlyForDeploymentPostprocessing = 1;
638 };
639 3104AFC6156D35E2000A585A /* CopyFiles */ = {
640 isa = PBXCopyFilesBuildPhase;
641 buildActionMask = 2147483647;
642 dstPath = /usr/share/man/man1/;
643 dstSubfolderSpec = 0;
644 files = (
645 );
646 runOnlyForDeploymentPostprocessing = 1;
647 };
648 3104AFDB156D3681000A585A /* CopyFiles */ = {
649 isa = PBXCopyFilesBuildPhase;
650 buildActionMask = 2147483647;
651 dstPath = /usr/share/man/man1/;
652 dstSubfolderSpec = 0;
653 files = (
654 );
655 runOnlyForDeploymentPostprocessing = 1;
656 };
657 3104B007156D38F3000A585A /* CopyFiles */ = {
658 isa = PBXCopyFilesBuildPhase;
659 buildActionMask = 2147483647;
660 dstPath = /usr/share/man/man1/;
661 dstSubfolderSpec = 0;
662 files = (
663 );
664 runOnlyForDeploymentPostprocessing = 1;
665 };
666 3104B020156D39D4000A585A /* CopyFiles */ = {
667 isa = PBXCopyFilesBuildPhase;
668 buildActionMask = 2147483647;
669 dstPath = /usr/share/man/man1/;
670 dstSubfolderSpec = 0;
671 files = (
672 );
673 runOnlyForDeploymentPostprocessing = 1;
674 };
675 3104B03B156D3AD7000A585A /* CopyFiles */ = {
676 isa = PBXCopyFilesBuildPhase;
677 buildActionMask = 2147483647;
678 dstPath = /usr/share/man/man1/;
679 dstSubfolderSpec = 0;
680 files = (
681 );
682 runOnlyForDeploymentPostprocessing = 1;
683 };
684 3114A58E156E913C001E0AA3 /* CopyFiles */ = {
685 isa = PBXCopyFilesBuildPhase;
686 buildActionMask = 2147483647;
687 dstPath = /usr/share/man/man1/;
688 dstSubfolderSpec = 0;
689 files = (
690 );
691 runOnlyForDeploymentPostprocessing = 1;
692 };
693 3114A5A5156E92C0001E0AA3 /* CopyFiles */ = {
694 isa = PBXCopyFilesBuildPhase;
695 buildActionMask = 2147483647;
696 dstPath = /usr/share/man/man1/;
697 dstSubfolderSpec = 0;
698 files = (
699 );
700 runOnlyForDeploymentPostprocessing = 1;
701 };
702 3114A5BB156E9315001E0AA3 /* CopyFiles */ = {
703 isa = PBXCopyFilesBuildPhase;
704 buildActionMask = 2147483647;
705 dstPath = /usr/share/man/man1/;
706 dstSubfolderSpec = 0;
707 files = (
708 );
709 runOnlyForDeploymentPostprocessing = 1;
710 };
711 3114A5D4156E93A0001E0AA3 /* CopyFiles */ = {
712 isa = PBXCopyFilesBuildPhase;
713 buildActionMask = 2147483647;
714 dstPath = /usr/share/man/man1/;
715 dstSubfolderSpec = 0;
716 files = (
717 );
718 runOnlyForDeploymentPostprocessing = 1;
719 };
720 3114A5ED156E93E7001E0AA3 /* CopyFiles */ = {
721 isa = PBXCopyFilesBuildPhase;
722 buildActionMask = 2147483647;
723 dstPath = /usr/share/man/man1/;
724 dstSubfolderSpec = 0;
725 files = (
726 );
727 runOnlyForDeploymentPostprocessing = 1;
728 };
729 3114A603156E9430001E0AA3 /* CopyFiles */ = {
730 isa = PBXCopyFilesBuildPhase;
731 buildActionMask = 2147483647;
732 dstPath = /usr/share/man/man1/;
733 dstSubfolderSpec = 0;
734 files = (
735 );
736 runOnlyForDeploymentPostprocessing = 1;
737 };
738 3114A61A156E9485001E0AA3 /* CopyFiles */ = {
739 isa = PBXCopyFilesBuildPhase;
740 buildActionMask = 2147483647;
741 dstPath = /usr/share/man/man1/;
742 dstSubfolderSpec = 0;
743 files = (
744 );
745 runOnlyForDeploymentPostprocessing = 1;
746 };
747 3114A631156E94DB001E0AA3 /* CopyFiles */ = {
748 isa = PBXCopyFilesBuildPhase;
749 buildActionMask = 2147483647;
750 dstPath = /usr/share/man/man1/;
751 dstSubfolderSpec = 0;
752 files = (
753 );
754 runOnlyForDeploymentPostprocessing = 1;
755 };
756 3114A64A156E9596001E0AA3 /* CopyFiles */ = {
757 isa = PBXCopyFilesBuildPhase;
758 buildActionMask = 2147483647;
759 dstPath = /usr/share/man/man1/;
760 dstSubfolderSpec = 0;
761 files = (
762 );
763 runOnlyForDeploymentPostprocessing = 1;
764 };
765 3114A660156E95D9001E0AA3 /* CopyFiles */ = {
766 isa = PBXCopyFilesBuildPhase;
767 buildActionMask = 2147483647;
768 dstPath = /usr/share/man/man1/;
769 dstSubfolderSpec = 0;
770 files = (
771 );
772 runOnlyForDeploymentPostprocessing = 1;
773 };
774 3114A67A156E9668001E0AA3 /* CopyFiles */ = {
775 isa = PBXCopyFilesBuildPhase;
776 buildActionMask = 2147483647;
777 dstPath = /usr/share/man/man1/;
778 dstSubfolderSpec = 0;
779 files = (
780 );
781 runOnlyForDeploymentPostprocessing = 1;
782 };
783 3114A693156E971B001E0AA3 /* CopyFiles */ = {
784 isa = PBXCopyFilesBuildPhase;
785 buildActionMask = 2147483647;
786 dstPath = /usr/share/man/man1/;
787 dstSubfolderSpec = 0;
788 files = (
789 );
790 runOnlyForDeploymentPostprocessing = 1;
791 };
792 3114A6AA156E9759001E0AA3 /* CopyFiles */ = {
793 isa = PBXCopyFilesBuildPhase;
794 buildActionMask = 2147483647;
795 dstPath = /usr/share/man/man1/;
796 dstSubfolderSpec = 0;
797 files = (
798 );
799 runOnlyForDeploymentPostprocessing = 1;
800 };
801 3114A6C4156E9815001E0AA3 /* CopyFiles */ = {
802 isa = PBXCopyFilesBuildPhase;
803 buildActionMask = 2147483647;
804 dstPath = /usr/share/man/man1/;
805 dstSubfolderSpec = 0;
806 files = (
807 );
808 runOnlyForDeploymentPostprocessing = 1;
809 };
810 3124CAB6156BE3EC00753214 /* CopyFiles */ = {
811 isa = PBXCopyFilesBuildPhase;
812 buildActionMask = 2147483647;
813 dstPath = /usr/share/man/man1/;
814 dstSubfolderSpec = 0;
815 files = (
816 );
817 runOnlyForDeploymentPostprocessing = 1;
818 };
819 3124CAD2156BE64A00753214 /* CopyFiles */ = {
820 isa = PBXCopyFilesBuildPhase;
821 buildActionMask = 2147483647;
822 dstPath = /usr/share/man/man1/;
823 dstSubfolderSpec = 0;
824 files = (
825 );
826 runOnlyForDeploymentPostprocessing = 1;
827 };
828 3124CAE9156BE7F300753214 /* CopyFiles */ = {
829 isa = PBXCopyFilesBuildPhase;
830 buildActionMask = 2147483647;
831 dstPath = /usr/share/man/man1/;
832 dstSubfolderSpec = 0;
833 files = (
834 );
835 runOnlyForDeploymentPostprocessing = 1;
836 };
837 31D6000B156D3CB200337B26 /* CopyFiles */ = {
838 isa = PBXCopyFilesBuildPhase;
839 buildActionMask = 2147483647;
840 dstPath = /usr/share/man/man1/;
841 dstSubfolderSpec = 0;
842 files = (
843 );
844 runOnlyForDeploymentPostprocessing = 1;
845 };
846 31D60025156D3D3E00337B26 /* CopyFiles */ = {
847 isa = PBXCopyFilesBuildPhase;
848 buildActionMask = 2147483647;
849 dstPath = /usr/share/man/man1/;
850 dstSubfolderSpec = 0;
851 files = (
852 );
853 runOnlyForDeploymentPostprocessing = 1;
854 };
855 31D6003C156D3EC700337B26 /* CopyFiles */ = {
856 isa = PBXCopyFilesBuildPhase;
857 buildActionMask = 2147483647;
858 dstPath = /usr/share/man/man1/;
859 dstSubfolderSpec = 0;
860 files = (
861 );
862 runOnlyForDeploymentPostprocessing = 1;
863 };
864 31D60052156D3F3500337B26 /* CopyFiles */ = {
865 isa = PBXCopyFilesBuildPhase;
866 buildActionMask = 2147483647;
867 dstPath = /usr/share/man/man1/;
868 dstSubfolderSpec = 0;
869 files = (
870 );
871 runOnlyForDeploymentPostprocessing = 1;
872 };
873 31D6006F156D3FBC00337B26 /* CopyFiles */ = {
874 isa = PBXCopyFilesBuildPhase;
875 buildActionMask = 2147483647;
876 dstPath = /usr/share/man/man1/;
877 dstSubfolderSpec = 0;
878 files = (
879 );
880 runOnlyForDeploymentPostprocessing = 1;
881 };
882 31D6008A156D402900337B26 /* CopyFiles */ = {
883 isa = PBXCopyFilesBuildPhase;
884 buildActionMask = 2147483647;
885 dstPath = /usr/share/man/man1/;
886 dstSubfolderSpec = 0;
887 files = (
888 );
889 runOnlyForDeploymentPostprocessing = 1;
890 };
891 31EEAC63156AB52600714D05 /* CopyFiles */ = {
892 isa = PBXCopyFilesBuildPhase;
893 buildActionMask = 2147483647;
894 dstPath = /usr/share/man/man1/;
895 dstSubfolderSpec = 0;
896 files = (
897 );
898 runOnlyForDeploymentPostprocessing = 1;
899 };
900/* End PBXCopyFilesBuildPhase section */
901
902/* Begin PBXFileReference section */
903 3104AFA5156D27E7000A585A /* ssixi6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ssixi6.c; sourceTree = "<group>"; };
904 3104AFB3156D357B000A585A /* apss */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = apss; sourceTree = BUILT_PRODUCTS_DIR; };
905 3104AFBE156D3591000A585A /* apss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = apss.c; sourceTree = "<group>"; };
906 3104AFC8156D35E2000A585A /* sacss */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = sacss; sourceTree = BUILT_PRODUCTS_DIR; };
907 3104AFD6156D3602000A585A /* sacss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sacss.c; sourceTree = "<group>"; };
908 3104AFDD156D3681000A585A /* amcsshe */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = amcsshe; sourceTree = BUILT_PRODUCTS_DIR; };
909 3104AFEB156D36A5000A585A /* amcsshe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amcsshe.c; sourceTree = "<group>"; };
910 3104B009156D38F3000A585A /* amsss */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = amsss; sourceTree = BUILT_PRODUCTS_DIR; };
911 3104B015156D390B000A585A /* amsss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amsss.c; sourceTree = "<group>"; };
912 3104B022156D39D4000A585A /* amssshe */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = amssshe; sourceTree = BUILT_PRODUCTS_DIR; };
913 3104B02F156D39F2000A585A /* amssshe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amssshe.c; sourceTree = "<group>"; };
914 3104B03D156D3AD7000A585A /* segsmss */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = segsmss; sourceTree = BUILT_PRODUCTS_DIR; };
915 3114A590156E913C001E0AA3 /* locv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = locv; sourceTree = BUILT_PRODUCTS_DIR; };
916 3114A5A1156E9168001E0AA3 /* locv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = locv.c; sourceTree = "<group>"; };
917 3114A5A7156E92C0001E0AA3 /* qs */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = qs; sourceTree = BUILT_PRODUCTS_DIR; };
918 3114A5B7156E92F0001E0AA3 /* qs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = qs.c; sourceTree = "<group>"; };
919 3114A5BD156E9315001E0AA3 /* finalcv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = finalcv; sourceTree = BUILT_PRODUCTS_DIR; };
920 3114A5CD156E9369001E0AA3 /* finalcv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = finalcv.c; sourceTree = "<group>"; };
921 3114A5D6156E93A0001E0AA3 /* finaltest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = finaltest; sourceTree = BUILT_PRODUCTS_DIR; };
922 3114A5E5156E93B9001E0AA3 /* finaltest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = finaltest.c; sourceTree = "<group>"; };
923 3114A5EF156E93E7001E0AA3 /* arenacv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = arenacv; sourceTree = BUILT_PRODUCTS_DIR; };
924 3114A5FB156E93FC001E0AA3 /* arenacv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = arenacv.c; sourceTree = "<group>"; };
925 3114A605156E9430001E0AA3 /* bttest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = bttest; sourceTree = BUILT_PRODUCTS_DIR; };
926 3114A613156E944A001E0AA3 /* bttest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bttest.c; sourceTree = "<group>"; };
927 3114A61C156E9485001E0AA3 /* teletest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = teletest; sourceTree = BUILT_PRODUCTS_DIR; };
928 3114A628156E949A001E0AA3 /* teletest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = teletest.c; sourceTree = "<group>"; };
929 3114A633156E94DB001E0AA3 /* abqtest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = abqtest; sourceTree = BUILT_PRODUCTS_DIR; };
930 3114A63D156E94EA001E0AA3 /* abqtest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = abqtest.c; sourceTree = "<group>"; };
931 3114A645156E9525001E0AA3 /* abq.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = abq.c; sourceTree = "<group>"; };
932 3114A64C156E9596001E0AA3 /* cbstest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = cbstest; sourceTree = BUILT_PRODUCTS_DIR; };
933 3114A656156E95A6001E0AA3 /* cbstest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cbstest.c; sourceTree = "<group>"; };
934 3114A662156E95D9001E0AA3 /* btcv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = btcv; sourceTree = BUILT_PRODUCTS_DIR; };
935 3114A66C156E95EB001E0AA3 /* btcv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = btcv.c; sourceTree = "<group>"; };
936 3114A67C156E9668001E0AA3 /* mv2test */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mv2test; sourceTree = BUILT_PRODUCTS_DIR; };
937 3114A686156E9674001E0AA3 /* mv2test.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mv2test.c; sourceTree = "<group>"; };
938 3114A68E156E96B6001E0AA3 /* poolmv2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolmv2.c; sourceTree = "<group>"; };
939 3114A695156E971B001E0AA3 /* messtest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = messtest; sourceTree = BUILT_PRODUCTS_DIR; };
940 3114A69F156E9725001E0AA3 /* messtest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = messtest.c; sourceTree = "<group>"; };
941 3114A6AC156E9759001E0AA3 /* walkt0 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = walkt0; sourceTree = BUILT_PRODUCTS_DIR; };
942 3114A6BA156E9768001E0AA3 /* walkt0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = walkt0.c; sourceTree = "<group>"; };
943 3114A6C6156E9815001E0AA3 /* eventcnv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = eventcnv; sourceTree = BUILT_PRODUCTS_DIR; };
944 3114A6D0156E9829001E0AA3 /* eventcnv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = eventcnv.c; sourceTree = "<group>"; };
945 3114A6D9156E9950001E0AA3 /* eventpro.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = eventpro.c; sourceTree = "<group>"; };
946 3114A6DB156E995A001E0AA3 /* table.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = table.c; sourceTree = "<group>"; };
947 3124CAB8156BE3EC00753214 /* awlut */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = awlut; sourceTree = BUILT_PRODUCTS_DIR; };
948 3124CAC2156BE40100753214 /* awlut.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = awlut.c; sourceTree = "<group>"; };
949 3124CAC6156BE48D00753214 /* fmtdy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fmtdy.c; sourceTree = "<group>"; };
950 3124CAC7156BE48D00753214 /* fmtdytst.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fmtdytst.c; sourceTree = "<group>"; };
951 3124CACA156BE4A300753214 /* poollo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poollo.c; sourceTree = "<group>"; };
952 3124CACC156BE4C200753214 /* fmtno.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fmtno.c; sourceTree = "<group>"; };
953 3124CACE156BE4CF00753214 /* poolawl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolawl.c; sourceTree = "<group>"; };
954 3124CAD4156BE64A00753214 /* mpsicv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mpsicv; sourceTree = BUILT_PRODUCTS_DIR; };
955 3124CADE156BE65900753214 /* mpsicv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpsicv.c; sourceTree = "<group>"; };
956 3124CAE4156BE6D500753214 /* fmthe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fmthe.c; sourceTree = "<group>"; };
957 3124CAEB156BE7F300753214 /* amcss */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = amcss; sourceTree = BUILT_PRODUCTS_DIR; };
958 3124CAF5156BE81100753214 /* amcss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = amcss.c; sourceTree = "<group>"; };
959 31A47BA3156C1E130039B1C2 /* mps.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mps.c; sourceTree = "<group>"; };
960 31A47BA5156C1E5E0039B1C2 /* ssixi3.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = ssixi3.c; sourceTree = "<group>"; };
961 31D60006156D3C5F00337B26 /* segsmss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = segsmss.c; sourceTree = "<group>"; };
962 31D6000D156D3CB200337B26 /* awluthe */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = awluthe; sourceTree = BUILT_PRODUCTS_DIR; };
963 31D60017156D3CC300337B26 /* awluthe.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = awluthe.c; sourceTree = "<group>"; };
964 31D60027156D3D3E00337B26 /* lockcov */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = lockcov; sourceTree = BUILT_PRODUCTS_DIR; };
965 31D60036156D3E0200337B26 /* lockcov.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lockcov.c; sourceTree = "<group>"; };
966 31D6003E156D3EC700337B26 /* poolncv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = poolncv; sourceTree = BUILT_PRODUCTS_DIR; };
967 31D6004A156D3EE600337B26 /* poolncv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolncv.c; sourceTree = "<group>"; };
968 31D60054156D3F3500337B26 /* zcoll */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = zcoll; sourceTree = BUILT_PRODUCTS_DIR; };
969 31D6005E156D3F4A00337B26 /* zcoll.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zcoll.c; sourceTree = "<group>"; };
970 31D60071156D3FBC00337B26 /* zmess */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = zmess; sourceTree = BUILT_PRODUCTS_DIR; };
971 31D6007B156D3FCC00337B26 /* zmess.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = zmess.c; sourceTree = "<group>"; };
972 31D6008C156D402900337B26 /* steptest */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = steptest; sourceTree = BUILT_PRODUCTS_DIR; };
973 31D60098156D403C00337B26 /* steptest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = steptest.c; sourceTree = "<group>"; };
974 31EEABF5156AAF7C00714D05 /* mpsi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpsi.c; sourceTree = "<group>"; };
975 31EEABFB156AAF9D00714D05 /* libmps.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libmps.a; sourceTree = BUILT_PRODUCTS_DIR; };
976 31EEAC01156AB21B00714D05 /* mpm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpm.c; sourceTree = "<group>"; };
977 31EEAC03156AB23A00714D05 /* arenavm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = arenavm.c; sourceTree = "<group>"; };
978 31EEAC05156AB27B00714D05 /* arena.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = arena.c; sourceTree = "<group>"; };
979 31EEAC06156AB27B00714D05 /* arenacl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = arenacl.c; sourceTree = "<group>"; };
980 31EEAC07156AB27B00714D05 /* global.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = global.c; sourceTree = "<group>"; };
981 31EEAC08156AB27B00714D05 /* locus.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = locus.c; sourceTree = "<group>"; };
982 31EEAC09156AB27B00714D05 /* pool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pool.c; sourceTree = "<group>"; };
983 31EEAC0A156AB27B00714D05 /* poolabs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolabs.c; sourceTree = "<group>"; };
984 31EEAC0B156AB27B00714D05 /* protocol.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = protocol.c; sourceTree = "<group>"; };
985 31EEAC0C156AB27B00714D05 /* reserv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reserv.c; sourceTree = "<group>"; };
986 31EEAC0D156AB27B00714D05 /* tract.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = tract.c; sourceTree = "<group>"; };
987 31EEAC0E156AB27B00714D05 /* walk.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = walk.c; sourceTree = "<group>"; };
988 31EEAC19156AB2B200714D05 /* buffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = buffer.c; sourceTree = "<group>"; };
989 31EEAC1A156AB2B200714D05 /* format.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = format.c; sourceTree = "<group>"; };
990 31EEAC1B156AB2B200714D05 /* ref.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ref.c; sourceTree = "<group>"; };
991 31EEAC1C156AB2B200714D05 /* root.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = root.c; sourceTree = "<group>"; };
992 31EEAC1D156AB2B200714D05 /* seg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = seg.c; sourceTree = "<group>"; };
993 31EEAC1E156AB2B200714D05 /* trace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = trace.c; sourceTree = "<group>"; };
994 31EEAC1F156AB2B200714D05 /* traceanc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = traceanc.c; sourceTree = "<group>"; };
995 31EEAC27156AB2F200714D05 /* bt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = bt.c; sourceTree = "<group>"; };
996 31EEAC28156AB2F200714D05 /* dbgpool.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dbgpool.c; sourceTree = "<group>"; };
997 31EEAC29156AB2F200714D05 /* dbgpooli.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dbgpooli.c; sourceTree = "<group>"; };
998 31EEAC2A156AB2F200714D05 /* event.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = event.c; sourceTree = "<group>"; };
999 31EEAC2B156AB2F200714D05 /* ld.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ld.c; sourceTree = "<group>"; };
1000 31EEAC2C156AB2F200714D05 /* message.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = message.c; sourceTree = "<group>"; };
1001 31EEAC2D156AB2F200714D05 /* poolmfs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolmfs.c; sourceTree = "<group>"; };
1002 31EEAC2E156AB2F200714D05 /* poolmrg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolmrg.c; sourceTree = "<group>"; };
1003 31EEAC2F156AB2F200714D05 /* poolmv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolmv.c; sourceTree = "<group>"; };
1004 31EEAC30156AB2F200714D05 /* ring.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ring.c; sourceTree = "<group>"; };
1005 31EEAC31156AB2F200714D05 /* sac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sac.c; sourceTree = "<group>"; };
1006 31EEAC32156AB2F200714D05 /* shield.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = shield.c; sourceTree = "<group>"; };
1007 31EEAC3F156AB32500714D05 /* boot.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = boot.c; sourceTree = "<group>"; };
1008 31EEAC40156AB32500714D05 /* cbs.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cbs.c; sourceTree = "<group>"; };
1009 31EEAC41156AB32500714D05 /* diag.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = diag.c; sourceTree = "<group>"; };
1010 31EEAC42156AB32500714D05 /* meter.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = meter.c; sourceTree = "<group>"; };
1011 31EEAC43156AB32500714D05 /* splay.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = splay.c; sourceTree = "<group>"; };
1012 31EEAC44156AB32500714D05 /* version.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = version.c; sourceTree = "<group>"; };
1013 31EEAC4C156AB3B000714D05 /* lockix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = lockix.c; sourceTree = "<group>"; };
1014 31EEAC4E156AB3E300714D05 /* prmcan.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = prmcan.c; sourceTree = "<group>"; };
1015 31EEAC4F156AB3E300714D05 /* protix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = protix.c; sourceTree = "<group>"; };
1016 31EEAC50156AB3E300714D05 /* protsgix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = protsgix.c; sourceTree = "<group>"; };
1017 31EEAC52156AB3E300714D05 /* than.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = than.c; sourceTree = "<group>"; };
1018 31EEAC53156AB3E300714D05 /* vmix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = vmix.c; sourceTree = "<group>"; };
1019 31EEAC5B156AB41900714D05 /* poolamc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolamc.c; sourceTree = "<group>"; };
1020 31EEAC5D156AB43F00714D05 /* poolsnc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolsnc.c; sourceTree = "<group>"; };
1021 31EEAC5F156AB44D00714D05 /* poolmvff.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = poolmvff.c; sourceTree = "<group>"; };
1022 31EEAC65156AB52600714D05 /* mpmss */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mpmss; sourceTree = BUILT_PRODUCTS_DIR; };
1023 31EEAC70156AB56000714D05 /* mpsioan.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpsioan.c; sourceTree = "<group>"; };
1024 31EEAC71156AB56000714D05 /* mpsliban.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpsliban.c; sourceTree = "<group>"; };
1025 31EEAC74156AB58E00714D05 /* mpmss.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mpmss.c; sourceTree = SOURCE_ROOT; };
1026 31EEAC9E156AB73400714D05 /* testlib.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = testlib.c; sourceTree = "<group>"; };
1027 31EEACA7156AB79800714D05 /* span.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = span.c; sourceTree = "<group>"; };
1028/* End PBXFileReference section */
1029
1030/* Begin PBXFrameworksBuildPhase section */
1031 3104AFB0156D357B000A585A /* Frameworks */ = {
1032 isa = PBXFrameworksBuildPhase;
1033 buildActionMask = 2147483647;
1034 files = (
1035 3104AFC2156D35B2000A585A /* libmps.a in Frameworks */,
1036 );
1037 runOnlyForDeploymentPostprocessing = 0;
1038 };
1039 3104AFC5156D35E2000A585A /* Frameworks */ = {
1040 isa = PBXFrameworksBuildPhase;
1041 buildActionMask = 2147483647;
1042 files = (
1043 3104AFD4156D35F7000A585A /* libmps.a in Frameworks */,
1044 );
1045 runOnlyForDeploymentPostprocessing = 0;
1046 };
1047 3104AFDA156D3681000A585A /* Frameworks */ = {
1048 isa = PBXFrameworksBuildPhase;
1049 buildActionMask = 2147483647;
1050 files = (
1051 3104AFE9156D3690000A585A /* libmps.a in Frameworks */,
1052 );
1053 runOnlyForDeploymentPostprocessing = 0;
1054 };
1055 3104B006156D38F3000A585A /* Frameworks */ = {
1056 isa = PBXFrameworksBuildPhase;
1057 buildActionMask = 2147483647;
1058 files = (
1059 3104B018156D3953000A585A /* libmps.a in Frameworks */,
1060 );
1061 runOnlyForDeploymentPostprocessing = 0;
1062 };
1063 3104B01F156D39D4000A585A /* Frameworks */ = {
1064 isa = PBXFrameworksBuildPhase;
1065 buildActionMask = 2147483647;
1066 files = (
1067 3104B02E156D39E2000A585A /* libmps.a in Frameworks */,
1068 );
1069 runOnlyForDeploymentPostprocessing = 0;
1070 };
1071 3104B03A156D3AD7000A585A /* Frameworks */ = {
1072 isa = PBXFrameworksBuildPhase;
1073 buildActionMask = 2147483647;
1074 files = (
1075 31D60008156D3C7400337B26 /* libmps.a in Frameworks */,
1076 );
1077 runOnlyForDeploymentPostprocessing = 0;
1078 };
1079 3114A58D156E913C001E0AA3 /* Frameworks */ = {
1080 isa = PBXFrameworksBuildPhase;
1081 buildActionMask = 2147483647;
1082 files = (
1083 3114A59B156E914B001E0AA3 /* libmps.a in Frameworks */,
1084 );
1085 runOnlyForDeploymentPostprocessing = 0;
1086 };
1087 3114A5A4156E92C0001E0AA3 /* Frameworks */ = {
1088 isa = PBXFrameworksBuildPhase;
1089 buildActionMask = 2147483647;
1090 files = (
1091 3114A5B1156E92C8001E0AA3 /* libmps.a in Frameworks */,
1092 );
1093 runOnlyForDeploymentPostprocessing = 0;
1094 };
1095 3114A5BA156E9315001E0AA3 /* Frameworks */ = {
1096 isa = PBXFrameworksBuildPhase;
1097 buildActionMask = 2147483647;
1098 files = (
1099 3114A5C8156E9322001E0AA3 /* libmps.a in Frameworks */,
1100 );
1101 runOnlyForDeploymentPostprocessing = 0;
1102 };
1103 3114A5D3156E93A0001E0AA3 /* Frameworks */ = {
1104 isa = PBXFrameworksBuildPhase;
1105 buildActionMask = 2147483647;
1106 files = (
1107 3114A5E4156E93AE001E0AA3 /* libmps.a in Frameworks */,
1108 );
1109 runOnlyForDeploymentPostprocessing = 0;
1110 };
1111 3114A5EC156E93E7001E0AA3 /* Frameworks */ = {
1112 isa = PBXFrameworksBuildPhase;
1113 buildActionMask = 2147483647;
1114 files = (
1115 3114A5FA156E93F3001E0AA3 /* libmps.a in Frameworks */,
1116 );
1117 runOnlyForDeploymentPostprocessing = 0;
1118 };
1119 3114A602156E9430001E0AA3 /* Frameworks */ = {
1120 isa = PBXFrameworksBuildPhase;
1121 buildActionMask = 2147483647;
1122 files = (
1123 3114A617156E946B001E0AA3 /* libmps.a in Frameworks */,
1124 );
1125 runOnlyForDeploymentPostprocessing = 0;
1126 };
1127 3114A619156E9485001E0AA3 /* Frameworks */ = {
1128 isa = PBXFrameworksBuildPhase;
1129 buildActionMask = 2147483647;
1130 files = (
1131 3114A626156E948C001E0AA3 /* libmps.a in Frameworks */,
1132 );
1133 runOnlyForDeploymentPostprocessing = 0;
1134 };
1135 3114A630156E94DB001E0AA3 /* Frameworks */ = {
1136 isa = PBXFrameworksBuildPhase;
1137 buildActionMask = 2147483647;
1138 files = (
1139 3114A640156E94F0001E0AA3 /* libmps.a in Frameworks */,
1140 );
1141 runOnlyForDeploymentPostprocessing = 0;
1142 };
1143 3114A649156E9596001E0AA3 /* Frameworks */ = {
1144 isa = PBXFrameworksBuildPhase;
1145 buildActionMask = 2147483647;
1146 files = (
1147 3114A673156E95F6001E0AA3 /* libmps.a in Frameworks */,
1148 );
1149 runOnlyForDeploymentPostprocessing = 0;
1150 };
1151 3114A65F156E95D9001E0AA3 /* Frameworks */ = {
1152 isa = PBXFrameworksBuildPhase;
1153 buildActionMask = 2147483647;
1154 files = (
1155 3114A670156E95F2001E0AA3 /* libmps.a in Frameworks */,
1156 );
1157 runOnlyForDeploymentPostprocessing = 0;
1158 };
1159 3114A679156E9668001E0AA3 /* Frameworks */ = {
1160 isa = PBXFrameworksBuildPhase;
1161 buildActionMask = 2147483647;
1162 files = (
1163 3114A6DD156E9A0F001E0AA3 /* libmps.a in Frameworks */,
1164 );
1165 runOnlyForDeploymentPostprocessing = 0;
1166 };
1167 3114A692156E971B001E0AA3 /* Frameworks */ = {
1168 isa = PBXFrameworksBuildPhase;
1169 buildActionMask = 2147483647;
1170 files = (
1171 3114A6A3156E972D001E0AA3 /* libmps.a in Frameworks */,
1172 );
1173 runOnlyForDeploymentPostprocessing = 0;
1174 };
1175 3114A6A9156E9759001E0AA3 /* Frameworks */ = {
1176 isa = PBXFrameworksBuildPhase;
1177 buildActionMask = 2147483647;
1178 files = (
1179 3114A6BE156E9771001E0AA3 /* libmps.a in Frameworks */,
1180 );
1181 runOnlyForDeploymentPostprocessing = 0;
1182 };
1183 3114A6C3156E9815001E0AA3 /* Frameworks */ = {
1184 isa = PBXFrameworksBuildPhase;
1185 buildActionMask = 2147483647;
1186 files = (
1187 3114A6D7156E9923001E0AA3 /* libmps.a in Frameworks */,
1188 );
1189 runOnlyForDeploymentPostprocessing = 0;
1190 };
1191 3124CAB5156BE3EC00753214 /* Frameworks */ = {
1192 isa = PBXFrameworksBuildPhase;
1193 buildActionMask = 2147483647;
1194 files = (
1195 3124CAC4156BE40D00753214 /* libmps.a in Frameworks */,
1196 );
1197 runOnlyForDeploymentPostprocessing = 0;
1198 };
1199 3124CAD1156BE64A00753214 /* Frameworks */ = {
1200 isa = PBXFrameworksBuildPhase;
1201 buildActionMask = 2147483647;
1202 files = (
1203 3124CAE1156BE67000753214 /* libmps.a in Frameworks */,
1204 );
1205 runOnlyForDeploymentPostprocessing = 0;
1206 };
1207 3124CAE8156BE7F300753214 /* Frameworks */ = {
1208 isa = PBXFrameworksBuildPhase;
1209 buildActionMask = 2147483647;
1210 files = (
1211 3124CAFC156BE82900753214 /* libmps.a in Frameworks */,
1212 );
1213 runOnlyForDeploymentPostprocessing = 0;
1214 };
1215 31D6000A156D3CB200337B26 /* Frameworks */ = {
1216 isa = PBXFrameworksBuildPhase;
1217 buildActionMask = 2147483647;
1218 files = (
1219 31D60019156D3CCC00337B26 /* libmps.a in Frameworks */,
1220 );
1221 runOnlyForDeploymentPostprocessing = 0;
1222 };
1223 31D60024156D3D3E00337B26 /* Frameworks */ = {
1224 isa = PBXFrameworksBuildPhase;
1225 buildActionMask = 2147483647;
1226 files = (
1227 31D60035156D3DF300337B26 /* libmps.a in Frameworks */,
1228 );
1229 runOnlyForDeploymentPostprocessing = 0;
1230 };
1231 31D6003B156D3EC700337B26 /* Frameworks */ = {
1232 isa = PBXFrameworksBuildPhase;
1233 buildActionMask = 2147483647;
1234 files = (
1235 31D60049156D3ED200337B26 /* libmps.a in Frameworks */,
1236 );
1237 runOnlyForDeploymentPostprocessing = 0;
1238 };
1239 31D60051156D3F3500337B26 /* Frameworks */ = {
1240 isa = PBXFrameworksBuildPhase;
1241 buildActionMask = 2147483647;
1242 files = (
1243 31D60060156D3F5000337B26 /* libmps.a in Frameworks */,
1244 );
1245 runOnlyForDeploymentPostprocessing = 0;
1246 };
1247 31D6006E156D3FBC00337B26 /* Frameworks */ = {
1248 isa = PBXFrameworksBuildPhase;
1249 buildActionMask = 2147483647;
1250 files = (
1251 31D60083156D3FDB00337B26 /* libmps.a in Frameworks */,
1252 );
1253 runOnlyForDeploymentPostprocessing = 0;
1254 };
1255 31D60089156D402900337B26 /* Frameworks */ = {
1256 isa = PBXFrameworksBuildPhase;
1257 buildActionMask = 2147483647;
1258 files = (
1259 31D6009B156D404400337B26 /* libmps.a in Frameworks */,
1260 );
1261 runOnlyForDeploymentPostprocessing = 0;
1262 };
1263 31EEABF8156AAF9D00714D05 /* Frameworks */ = {
1264 isa = PBXFrameworksBuildPhase;
1265 buildActionMask = 2147483647;
1266 files = (
1267 );
1268 runOnlyForDeploymentPostprocessing = 0;
1269 };
1270 31EEAC62156AB52600714D05 /* Frameworks */ = {
1271 isa = PBXFrameworksBuildPhase;
1272 buildActionMask = 2147483647;
1273 files = (
1274 3150AE53156ABA2500A6E22A /* libmps.a in Frameworks */,
1275 );
1276 runOnlyForDeploymentPostprocessing = 0;
1277 };
1278/* End PBXFrameworksBuildPhase section */
1279
1280/* Begin PBXGroup section */
1281 3114A647156E956C001E0AA3 /* Mysterious */ = {
1282 isa = PBXGroup;
1283 children = (
1284 3114A68E156E96B6001E0AA3 /* poolmv2.c */,
1285 3114A645156E9525001E0AA3 /* abq.c */,
1286 );
1287 name = Mysterious;
1288 sourceTree = "<group>";
1289 };
1290 3114A6D6156E9846001E0AA3 /* Tools */ = {
1291 isa = PBXGroup;
1292 children = (
1293 3114A6D8156E9942001E0AA3 /* eventcnv */,
1294 );
1295 name = Tools;
1296 sourceTree = "<group>";
1297 };
1298 3114A6D8156E9942001E0AA3 /* eventcnv */ = {
1299 isa = PBXGroup;
1300 children = (
1301 3114A6DB156E995A001E0AA3 /* table.c */,
1302 3114A6D9156E9950001E0AA3 /* eventpro.c */,
1303 3114A6D0156E9829001E0AA3 /* eventcnv.c */,
1304 );
1305 name = eventcnv;
1306 sourceTree = "<group>";
1307 };
1308 3124CAB3156BE1B700753214 /* Tests */ = {
1309 isa = PBXGroup;
1310 children = (
1311 3114A63D156E94EA001E0AA3 /* abqtest.c */,
1312 3124CAF5156BE81100753214 /* amcss.c */,
1313 3104AFEB156D36A5000A585A /* amcsshe.c */,
1314 3104B015156D390B000A585A /* amsss.c */,
1315 3104B02F156D39F2000A585A /* amssshe.c */,
1316 3104AFBE156D3591000A585A /* apss.c */,
1317 3114A5FB156E93FC001E0AA3 /* arenacv.c */,
1318 3124CAC2156BE40100753214 /* awlut.c */,
1319 31D60017156D3CC300337B26 /* awluthe.c */,
1320 3114A66C156E95EB001E0AA3 /* btcv.c */,
1321 3114A613156E944A001E0AA3 /* bttest.c */,
1322 3114A656156E95A6001E0AA3 /* cbstest.c */,
1323 3114A5CD156E9369001E0AA3 /* finalcv.c */,
1324 3114A5E5156E93B9001E0AA3 /* finaltest.c */,
1325 3124CAC6156BE48D00753214 /* fmtdy.c */,
1326 3124CAC7156BE48D00753214 /* fmtdytst.c */,
1327 3124CAE4156BE6D500753214 /* fmthe.c */,
1328 3124CACC156BE4C200753214 /* fmtno.c */,
1329 31D60036156D3E0200337B26 /* lockcov.c */,
1330 3114A5A1156E9168001E0AA3 /* locv.c */,
1331 3114A69F156E9725001E0AA3 /* messtest.c */,
1332 31EEAC74156AB58E00714D05 /* mpmss.c */,
1333 3124CADE156BE65900753214 /* mpsicv.c */,
1334 3114A686156E9674001E0AA3 /* mv2test.c */,
1335 31D6004A156D3EE600337B26 /* poolncv.c */,
1336 3114A5B7156E92F0001E0AA3 /* qs.c */,
1337 3104AFD6156D3602000A585A /* sacss.c */,
1338 31D60006156D3C5F00337B26 /* segsmss.c */,
1339 31D60098156D403C00337B26 /* steptest.c */,
1340 3114A628156E949A001E0AA3 /* teletest.c */,
1341 31EEAC9E156AB73400714D05 /* testlib.c */,
1342 3114A6BA156E9768001E0AA3 /* walkt0.c */,
1343 31D6005E156D3F4A00337B26 /* zcoll.c */,
1344 31D6007B156D3FCC00337B26 /* zmess.c */,
1345 );
1346 name = Tests;
1347 sourceTree = "<group>";
1348 };
1349 31A47BA6156C1E620039B1C2 /* I3 */ = {
1350 isa = PBXGroup;
1351 children = (
1352 31A47BA5156C1E5E0039B1C2 /* ssixi3.c */,
1353 );
1354 name = I3;
1355 sourceTree = "<group>";
1356 };
1357 31A47BA7156C1E6E0039B1C2 /* I6 */ = {
1358 isa = PBXGroup;
1359 children = (
1360 3104AFA5156D27E7000A585A /* ssixi6.c */,
1361 );
1362 name = I6;
1363 sourceTree = "<group>";
1364 };
1365 31A47BA8156C1E930039B1C2 /* MPS */ = {
1366 isa = PBXGroup;
1367 children = (
1368 31A47BA3156C1E130039B1C2 /* mps.c */,
1369 31EEABF4156AAF6500714D05 /* MPM Core */,
1370 31EEAC5A156AB40800714D05 /* Extra pools */,
1371 31EEAC4B156AB39C00714D05 /* Platform */,
1372 31EEAC6F156AB54300714D05 /* ANSI Plinth */,
1373 );
1374 name = MPS;
1375 sourceTree = "<group>";
1376 };
1377 31EEABD8156AAE9E00714D05 = {
1378 isa = PBXGroup;
1379 children = (
1380 3114A6D6156E9846001E0AA3 /* Tools */,
1381 3114A647156E956C001E0AA3 /* Mysterious */,
1382 31A47BA8156C1E930039B1C2 /* MPS */,
1383 3124CAB3156BE1B700753214 /* Tests */,
1384 31EEABEF156AAF5C00714D05 /* Products */,
1385 );
1386 sourceTree = "<group>";
1387 };
1388 31EEABEF156AAF5C00714D05 /* Products */ = {
1389 isa = PBXGroup;
1390 children = (
1391 31EEABFB156AAF9D00714D05 /* libmps.a */,
1392 31EEAC65156AB52600714D05 /* mpmss */,
1393 3124CAB8156BE3EC00753214 /* awlut */,
1394 3124CAD4156BE64A00753214 /* mpsicv */,
1395 3124CAEB156BE7F300753214 /* amcss */,
1396 3104AFB3156D357B000A585A /* apss */,
1397 3104AFC8156D35E2000A585A /* sacss */,
1398 3104AFDD156D3681000A585A /* amcsshe */,
1399 3104B009156D38F3000A585A /* amsss */,
1400 3104B022156D39D4000A585A /* amssshe */,
1401 3104B03D156D3AD7000A585A /* segsmss */,
1402 31D6000D156D3CB200337B26 /* awluthe */,
1403 31D60027156D3D3E00337B26 /* lockcov */,
1404 31D6003E156D3EC700337B26 /* poolncv */,
1405 31D60054156D3F3500337B26 /* zcoll */,
1406 31D60071156D3FBC00337B26 /* zmess */,
1407 31D6008C156D402900337B26 /* steptest */,
1408 3114A590156E913C001E0AA3 /* locv */,
1409 3114A5A7156E92C0001E0AA3 /* qs */,
1410 3114A5BD156E9315001E0AA3 /* finalcv */,
1411 3114A5D6156E93A0001E0AA3 /* finaltest */,
1412 3114A5EF156E93E7001E0AA3 /* arenacv */,
1413 3114A605156E9430001E0AA3 /* bttest */,
1414 3114A61C156E9485001E0AA3 /* teletest */,
1415 3114A633156E94DB001E0AA3 /* abqtest */,
1416 3114A64C156E9596001E0AA3 /* cbstest */,
1417 3114A662156E95D9001E0AA3 /* btcv */,
1418 3114A67C156E9668001E0AA3 /* mv2test */,
1419 3114A695156E971B001E0AA3 /* messtest */,
1420 3114A6AC156E9759001E0AA3 /* walkt0 */,
1421 3114A6C6156E9815001E0AA3 /* eventcnv */,
1422 );
1423 name = Products;
1424 sourceTree = "<group>";
1425 };
1426 31EEABF4156AAF6500714D05 /* MPM Core */ = {
1427 isa = PBXGroup;
1428 children = (
1429 31EEAC05156AB27B00714D05 /* arena.c */,
1430 31EEAC06156AB27B00714D05 /* arenacl.c */,
1431 31EEAC03156AB23A00714D05 /* arenavm.c */,
1432 31EEAC3F156AB32500714D05 /* boot.c */,
1433 31EEAC27156AB2F200714D05 /* bt.c */,
1434 31EEAC19156AB2B200714D05 /* buffer.c */,
1435 31EEAC40156AB32500714D05 /* cbs.c */,
1436 31EEAC28156AB2F200714D05 /* dbgpool.c */,
1437 31EEAC29156AB2F200714D05 /* dbgpooli.c */,
1438 31EEAC41156AB32500714D05 /* diag.c */,
1439 31EEAC2A156AB2F200714D05 /* event.c */,
1440 31EEAC1A156AB2B200714D05 /* format.c */,
1441 31EEAC07156AB27B00714D05 /* global.c */,
1442 31EEAC2B156AB2F200714D05 /* ld.c */,
1443 31EEAC08156AB27B00714D05 /* locus.c */,
1444 31EEAC2C156AB2F200714D05 /* message.c */,
1445 31EEAC42156AB32500714D05 /* meter.c */,
1446 31EEAC01156AB21B00714D05 /* mpm.c */,
1447 31EEABF5156AAF7C00714D05 /* mpsi.c */,
1448 31EEAC09156AB27B00714D05 /* pool.c */,
1449 31EEAC0A156AB27B00714D05 /* poolabs.c */,
1450 31EEAC2D156AB2F200714D05 /* poolmfs.c */,
1451 31EEAC2E156AB2F200714D05 /* poolmrg.c */,
1452 31EEAC2F156AB2F200714D05 /* poolmv.c */,
1453 31EEAC0B156AB27B00714D05 /* protocol.c */,
1454 31EEAC1B156AB2B200714D05 /* ref.c */,
1455 31EEAC0C156AB27B00714D05 /* reserv.c */,
1456 31EEAC30156AB2F200714D05 /* ring.c */,
1457 31EEAC1C156AB2B200714D05 /* root.c */,
1458 31EEAC31156AB2F200714D05 /* sac.c */,
1459 31EEAC1D156AB2B200714D05 /* seg.c */,
1460 31EEAC32156AB2F200714D05 /* shield.c */,
1461 31EEAC43156AB32500714D05 /* splay.c */,
1462 31EEAC1E156AB2B200714D05 /* trace.c */,
1463 31EEAC1F156AB2B200714D05 /* traceanc.c */,
1464 31EEAC0D156AB27B00714D05 /* tract.c */,
1465 31EEAC44156AB32500714D05 /* version.c */,
1466 31EEAC0E156AB27B00714D05 /* walk.c */,
1467 );
1468 name = "MPM Core";
1469 sourceTree = "<group>";
1470 };
1471 31EEAC4B156AB39C00714D05 /* Platform */ = {
1472 isa = PBXGroup;
1473 children = (
1474 31A47BA7156C1E6E0039B1C2 /* I6 */,
1475 31A47BA6156C1E620039B1C2 /* I3 */,
1476 31EEAC4C156AB3B000714D05 /* lockix.c */,
1477 31EEAC4E156AB3E300714D05 /* prmcan.c */,
1478 31EEAC4F156AB3E300714D05 /* protix.c */,
1479 31EEAC50156AB3E300714D05 /* protsgix.c */,
1480 31EEACA7156AB79800714D05 /* span.c */,
1481 31EEAC52156AB3E300714D05 /* than.c */,
1482 31EEAC53156AB3E300714D05 /* vmix.c */,
1483 );
1484 name = Platform;
1485 sourceTree = "<group>";
1486 };
1487 31EEAC5A156AB40800714D05 /* Extra pools */ = {
1488 isa = PBXGroup;
1489 children = (
1490 31EEAC5B156AB41900714D05 /* poolamc.c */,
1491 3124CACE156BE4CF00753214 /* poolawl.c */,
1492 3124CACA156BE4A300753214 /* poollo.c */,
1493 31EEAC5F156AB44D00714D05 /* poolmvff.c */,
1494 31EEAC5D156AB43F00714D05 /* poolsnc.c */,
1495 );
1496 name = "Extra pools";
1497 sourceTree = "<group>";
1498 };
1499 31EEAC6F156AB54300714D05 /* ANSI Plinth */ = {
1500 isa = PBXGroup;
1501 children = (
1502 31EEAC70156AB56000714D05 /* mpsioan.c */,
1503 31EEAC71156AB56000714D05 /* mpsliban.c */,
1504 );
1505 name = "ANSI Plinth";
1506 sourceTree = "<group>";
1507 };
1508/* End PBXGroup section */
1509
1510/* Begin PBXHeadersBuildPhase section */
1511 31EEABF9156AAF9D00714D05 /* Headers */ = {
1512 isa = PBXHeadersBuildPhase;
1513 buildActionMask = 2147483647;
1514 files = (
1515 );
1516 runOnlyForDeploymentPostprocessing = 0;
1517 };
1518/* End PBXHeadersBuildPhase section */
1519
1520/* Begin PBXNativeTarget section */
1521 3104AFB2156D357B000A585A /* apss */ = {
1522 isa = PBXNativeTarget;
1523 buildConfigurationList = 3104AFBC156D357B000A585A /* Build configuration list for PBXNativeTarget "apss" */;
1524 buildPhases = (
1525 3104AFAF156D357B000A585A /* Sources */,
1526 3104AFB0156D357B000A585A /* Frameworks */,
1527 3104AFB1156D357B000A585A /* CopyFiles */,
1528 );
1529 buildRules = (
1530 );
1531 dependencies = (
1532 3104AFC1156D35AE000A585A /* PBXTargetDependency */,
1533 );
1534 name = apss;
1535 productName = apss;
1536 productReference = 3104AFB3156D357B000A585A /* apss */;
1537 productType = "com.apple.product-type.tool";
1538 };
1539 3104AFC7156D35E2000A585A /* sacss */ = {
1540 isa = PBXNativeTarget;
1541 buildConfigurationList = 3104AFCF156D35E2000A585A /* Build configuration list for PBXNativeTarget "sacss" */;
1542 buildPhases = (
1543 3104AFC4156D35E2000A585A /* Sources */,
1544 3104AFC5156D35E2000A585A /* Frameworks */,
1545 3104AFC6156D35E2000A585A /* CopyFiles */,
1546 );
1547 buildRules = (
1548 );
1549 dependencies = (
1550 3104AFD3156D35F2000A585A /* PBXTargetDependency */,
1551 );
1552 name = sacss;
1553 productName = sacss;
1554 productReference = 3104AFC8156D35E2000A585A /* sacss */;
1555 productType = "com.apple.product-type.tool";
1556 };
1557 3104AFDC156D3681000A585A /* amcsshe */ = {
1558 isa = PBXNativeTarget;
1559 buildConfigurationList = 3104AFE4156D3682000A585A /* Build configuration list for PBXNativeTarget "amcsshe" */;
1560 buildPhases = (
1561 3104AFD9156D3681000A585A /* Sources */,
1562 3104AFDA156D3681000A585A /* Frameworks */,
1563 3104AFDB156D3681000A585A /* CopyFiles */,
1564 );
1565 buildRules = (
1566 );
1567 dependencies = (
1568 3104AFE8156D368D000A585A /* PBXTargetDependency */,
1569 );
1570 name = amcsshe;
1571 productName = amcsshe;
1572 productReference = 3104AFDD156D3681000A585A /* amcsshe */;
1573 productType = "com.apple.product-type.tool";
1574 };
1575 3104B008156D38F3000A585A /* amsss */ = {
1576 isa = PBXNativeTarget;
1577 buildConfigurationList = 3104B010156D38F3000A585A /* Build configuration list for PBXNativeTarget "amsss" */;
1578 buildPhases = (
1579 3104B005156D38F3000A585A /* Sources */,
1580 3104B006156D38F3000A585A /* Frameworks */,
1581 3104B007156D38F3000A585A /* CopyFiles */,
1582 );
1583 buildRules = (
1584 );
1585 dependencies = (
1586 3104B014156D38FA000A585A /* PBXTargetDependency */,
1587 );
1588 name = amsss;
1589 productName = amsss;
1590 productReference = 3104B009156D38F3000A585A /* amsss */;
1591 productType = "com.apple.product-type.tool";
1592 };
1593 3104B021156D39D4000A585A /* amssshe */ = {
1594 isa = PBXNativeTarget;
1595 buildConfigurationList = 3104B029156D39D4000A585A /* Build configuration list for PBXNativeTarget "amssshe" */;
1596 buildPhases = (
1597 3104B01E156D39D4000A585A /* Sources */,
1598 3104B01F156D39D4000A585A /* Frameworks */,
1599 3104B020156D39D4000A585A /* CopyFiles */,
1600 );
1601 buildRules = (
1602 );
1603 dependencies = (
1604 3104B038156D3A56000A585A /* PBXTargetDependency */,
1605 );
1606 name = amssshe;
1607 productName = amssshe;
1608 productReference = 3104B022156D39D4000A585A /* amssshe */;
1609 productType = "com.apple.product-type.tool";
1610 };
1611 3104B03C156D3AD7000A585A /* segsmss */ = {
1612 isa = PBXNativeTarget;
1613 buildConfigurationList = 3104B044156D3AD8000A585A /* Build configuration list for PBXNativeTarget "segsmss" */;
1614 buildPhases = (
1615 3104B039156D3AD7000A585A /* Sources */,
1616 3104B03A156D3AD7000A585A /* Frameworks */,
1617 3104B03B156D3AD7000A585A /* CopyFiles */,
1618 );
1619 buildRules = (
1620 );
1621 dependencies = (
1622 3104B048156D3ADE000A585A /* PBXTargetDependency */,
1623 );
1624 name = segsmss;
1625 productName = segsmss;
1626 productReference = 3104B03D156D3AD7000A585A /* segsmss */;
1627 productType = "com.apple.product-type.tool";
1628 };
1629 3114A58F156E913C001E0AA3 /* locv */ = {
1630 isa = PBXNativeTarget;
1631 buildConfigurationList = 3114A599156E913C001E0AA3 /* Build configuration list for PBXNativeTarget "locv" */;
1632 buildPhases = (
1633 3114A58C156E913C001E0AA3 /* Sources */,
1634 3114A58D156E913C001E0AA3 /* Frameworks */,
1635 3114A58E156E913C001E0AA3 /* CopyFiles */,
1636 );
1637 buildRules = (
1638 );
1639 dependencies = (
1640 3114A59E156E9156001E0AA3 /* PBXTargetDependency */,
1641 );
1642 name = locv;
1643 productName = locv;
1644 productReference = 3114A590156E913C001E0AA3 /* locv */;
1645 productType = "com.apple.product-type.tool";
1646 };
1647 3114A5A6156E92C0001E0AA3 /* qs */ = {
1648 isa = PBXNativeTarget;
1649 buildConfigurationList = 3114A5AE156E92C0001E0AA3 /* Build configuration list for PBXNativeTarget "qs" */;
1650 buildPhases = (
1651 3114A5A3156E92C0001E0AA3 /* Sources */,
1652 3114A5A4156E92C0001E0AA3 /* Frameworks */,
1653 3114A5A5156E92C0001E0AA3 /* CopyFiles */,
1654 );
1655 buildRules = (
1656 );
1657 dependencies = (
1658 3114A5B4156E92D8001E0AA3 /* PBXTargetDependency */,
1659 );
1660 name = qs;
1661 productName = qs;
1662 productReference = 3114A5A7156E92C0001E0AA3 /* qs */;
1663 productType = "com.apple.product-type.tool";
1664 };
1665 3114A5BC156E9315001E0AA3 /* finalcv */ = {
1666 isa = PBXNativeTarget;
1667 buildConfigurationList = 3114A5C4156E9315001E0AA3 /* Build configuration list for PBXNativeTarget "finalcv" */;
1668 buildPhases = (
1669 3114A5B9156E9315001E0AA3 /* Sources */,
1670 3114A5BA156E9315001E0AA3 /* Frameworks */,
1671 3114A5BB156E9315001E0AA3 /* CopyFiles */,
1672 );
1673 buildRules = (
1674 );
1675 dependencies = (
1676 3114A5CA156E9328001E0AA3 /* PBXTargetDependency */,
1677 );
1678 name = finalcv;
1679 productName = finalcv;
1680 productReference = 3114A5BD156E9315001E0AA3 /* finalcv */;
1681 productType = "com.apple.product-type.tool";
1682 };
1683 3114A5D5156E93A0001E0AA3 /* finaltest */ = {
1684 isa = PBXNativeTarget;
1685 buildConfigurationList = 3114A5DD156E93A0001E0AA3 /* Build configuration list for PBXNativeTarget "finaltest" */;
1686 buildPhases = (
1687 3114A5D2156E93A0001E0AA3 /* Sources */,
1688 3114A5D3156E93A0001E0AA3 /* Frameworks */,
1689 3114A5D4156E93A0001E0AA3 /* CopyFiles */,
1690 );
1691 buildRules = (
1692 );
1693 dependencies = (
1694 3114A5E8156E93BF001E0AA3 /* PBXTargetDependency */,
1695 );
1696 name = finaltest;
1697 productName = finaltest;
1698 productReference = 3114A5D6156E93A0001E0AA3 /* finaltest */;
1699 productType = "com.apple.product-type.tool";
1700 };
1701 3114A5EE156E93E7001E0AA3 /* arenacv */ = {
1702 isa = PBXNativeTarget;
1703 buildConfigurationList = 3114A5F6156E93E7001E0AA3 /* Build configuration list for PBXNativeTarget "arenacv" */;
1704 buildPhases = (
1705 3114A5EB156E93E7001E0AA3 /* Sources */,
1706 3114A5EC156E93E7001E0AA3 /* Frameworks */,
1707 3114A5ED156E93E7001E0AA3 /* CopyFiles */,
1708 );
1709 buildRules = (
1710 );
1711 dependencies = (
1712 3114A5FE156E9406001E0AA3 /* PBXTargetDependency */,
1713 );
1714 name = arenacv;
1715 productName = arenacv;
1716 productReference = 3114A5EF156E93E7001E0AA3 /* arenacv */;
1717 productType = "com.apple.product-type.tool";
1718 };
1719 3114A604156E9430001E0AA3 /* bttest */ = {
1720 isa = PBXNativeTarget;
1721 buildConfigurationList = 3114A60C156E9430001E0AA3 /* Build configuration list for PBXNativeTarget "bttest" */;
1722 buildPhases = (
1723 3114A601156E9430001E0AA3 /* Sources */,
1724 3114A602156E9430001E0AA3 /* Frameworks */,
1725 3114A603156E9430001E0AA3 /* CopyFiles */,
1726 );
1727 buildRules = (
1728 );
1729 dependencies = (
1730 3114A610156E9438001E0AA3 /* PBXTargetDependency */,
1731 );
1732 name = bttest;
1733 productName = bttest;
1734 productReference = 3114A605156E9430001E0AA3 /* bttest */;
1735 productType = "com.apple.product-type.tool";
1736 };
1737 3114A61B156E9485001E0AA3 /* teletest */ = {
1738 isa = PBXNativeTarget;
1739 buildConfigurationList = 3114A623156E9485001E0AA3 /* Build configuration list for PBXNativeTarget "teletest" */;
1740 buildPhases = (
1741 3114A618156E9485001E0AA3 /* Sources */,
1742 3114A619156E9485001E0AA3 /* Frameworks */,
1743 3114A61A156E9485001E0AA3 /* CopyFiles */,
1744 );
1745 buildRules = (
1746 );
1747 dependencies = (
1748 3114A62C156E94A6001E0AA3 /* PBXTargetDependency */,
1749 );
1750 name = teletest;
1751 productName = teletest;
1752 productReference = 3114A61C156E9485001E0AA3 /* teletest */;
1753 productType = "com.apple.product-type.tool";
1754 };
1755 3114A632156E94DB001E0AA3 /* abqtest */ = {
1756 isa = PBXNativeTarget;
1757 buildConfigurationList = 3114A63A156E94DB001E0AA3 /* Build configuration list for PBXNativeTarget "abqtest" */;
1758 buildPhases = (
1759 3114A62F156E94DB001E0AA3 /* Sources */,
1760 3114A630156E94DB001E0AA3 /* Frameworks */,
1761 3114A631156E94DB001E0AA3 /* CopyFiles */,
1762 );
1763 buildRules = (
1764 );
1765 dependencies = (
1766 3114A642156E94F8001E0AA3 /* PBXTargetDependency */,
1767 );
1768 name = abqtest;
1769 productName = abqtest;
1770 productReference = 3114A633156E94DB001E0AA3 /* abqtest */;
1771 productType = "com.apple.product-type.tool";
1772 };
1773 3114A64B156E9596001E0AA3 /* cbstest */ = {
1774 isa = PBXNativeTarget;
1775 buildConfigurationList = 3114A653156E9596001E0AA3 /* Build configuration list for PBXNativeTarget "cbstest" */;
1776 buildPhases = (
1777 3114A648156E9596001E0AA3 /* Sources */,
1778 3114A649156E9596001E0AA3 /* Frameworks */,
1779 3114A64A156E9596001E0AA3 /* CopyFiles */,
1780 );
1781 buildRules = (
1782 );
1783 dependencies = (
1784 3114A659156E95B1001E0AA3 /* PBXTargetDependency */,
1785 );
1786 name = cbstest;
1787 productName = cbstest;
1788 productReference = 3114A64C156E9596001E0AA3 /* cbstest */;
1789 productType = "com.apple.product-type.tool";
1790 };
1791 3114A661156E95D9001E0AA3 /* btcv */ = {
1792 isa = PBXNativeTarget;
1793 buildConfigurationList = 3114A669156E95D9001E0AA3 /* Build configuration list for PBXNativeTarget "btcv" */;
1794 buildPhases = (
1795 3114A65E156E95D9001E0AA3 /* Sources */,
1796 3114A65F156E95D9001E0AA3 /* Frameworks */,
1797 3114A660156E95D9001E0AA3 /* CopyFiles */,
1798 );
1799 buildRules = (
1800 );
1801 dependencies = (
1802 3114A675156E9619001E0AA3 /* PBXTargetDependency */,
1803 );
1804 name = btcv;
1805 productName = btcv;
1806 productReference = 3114A662156E95D9001E0AA3 /* btcv */;
1807 productType = "com.apple.product-type.tool";
1808 };
1809 3114A67B156E9668001E0AA3 /* mv2test */ = {
1810 isa = PBXNativeTarget;
1811 buildConfigurationList = 3114A683156E9669001E0AA3 /* Build configuration list for PBXNativeTarget "mv2test" */;
1812 buildPhases = (
1813 3114A678156E9668001E0AA3 /* Sources */,
1814 3114A679156E9668001E0AA3 /* Frameworks */,
1815 3114A67A156E9668001E0AA3 /* CopyFiles */,
1816 );
1817 buildRules = (
1818 );
1819 dependencies = (
1820 3114A68B156E9682001E0AA3 /* PBXTargetDependency */,
1821 );
1822 name = mv2test;
1823 productName = mv2test;
1824 productReference = 3114A67C156E9668001E0AA3 /* mv2test */;
1825 productType = "com.apple.product-type.tool";
1826 };
1827 3114A694156E971B001E0AA3 /* messtest */ = {
1828 isa = PBXNativeTarget;
1829 buildConfigurationList = 3114A69C156E971B001E0AA3 /* Build configuration list for PBXNativeTarget "messtest" */;
1830 buildPhases = (
1831 3114A691156E971B001E0AA3 /* Sources */,
1832 3114A692156E971B001E0AA3 /* Frameworks */,
1833 3114A693156E971B001E0AA3 /* CopyFiles */,
1834 );
1835 buildRules = (
1836 );
1837 dependencies = (
1838 3114A6A5156E9735001E0AA3 /* PBXTargetDependency */,
1839 );
1840 name = messtest;
1841 productName = messtest;
1842 productReference = 3114A695156E971B001E0AA3 /* messtest */;
1843 productType = "com.apple.product-type.tool";
1844 };
1845 3114A6AB156E9759001E0AA3 /* walkt0 */ = {
1846 isa = PBXNativeTarget;
1847 buildConfigurationList = 3114A6B3156E9759001E0AA3 /* Build configuration list for PBXNativeTarget "walkt0" */;
1848 buildPhases = (
1849 3114A6A8156E9759001E0AA3 /* Sources */,
1850 3114A6A9156E9759001E0AA3 /* Frameworks */,
1851 3114A6AA156E9759001E0AA3 /* CopyFiles */,
1852 );
1853 buildRules = (
1854 );
1855 dependencies = (
1856 3114A6B7156E975E001E0AA3 /* PBXTargetDependency */,
1857 );
1858 name = walkt0;
1859 productName = walkt0;
1860 productReference = 3114A6AC156E9759001E0AA3 /* walkt0 */;
1861 productType = "com.apple.product-type.tool";
1862 };
1863 3114A6C5156E9815001E0AA3 /* eventcnv */ = {
1864 isa = PBXNativeTarget;
1865 buildConfigurationList = 3114A6CD156E9815001E0AA3 /* Build configuration list for PBXNativeTarget "eventcnv" */;
1866 buildPhases = (
1867 3114A6C2156E9815001E0AA3 /* Sources */,
1868 3114A6C3156E9815001E0AA3 /* Frameworks */,
1869 3114A6C4156E9815001E0AA3 /* CopyFiles */,
1870 );
1871 buildRules = (
1872 );
1873 dependencies = (
1874 3114A6D3156E9834001E0AA3 /* PBXTargetDependency */,
1875 );
1876 name = eventcnv;
1877 productName = eventcnv;
1878 productReference = 3114A6C6156E9815001E0AA3 /* eventcnv */;
1879 productType = "com.apple.product-type.tool";
1880 };
1881 3124CAB7156BE3EC00753214 /* awlut */ = {
1882 isa = PBXNativeTarget;
1883 buildConfigurationList = 3124CABF156BE3EC00753214 /* Build configuration list for PBXNativeTarget "awlut" */;
1884 buildPhases = (
1885 3124CAB4156BE3EC00753214 /* Sources */,
1886 3124CAB5156BE3EC00753214 /* Frameworks */,
1887 3124CAB6156BE3EC00753214 /* CopyFiles */,
1888 );
1889 buildRules = (
1890 );
1891 dependencies = (
1892 31A47BAC156C21120039B1C2 /* PBXTargetDependency */,
1893 );
1894 name = awlut;
1895 productName = awlut;
1896 productReference = 3124CAB8156BE3EC00753214 /* awlut */;
1897 productType = "com.apple.product-type.tool";
1898 };
1899 3124CAD3156BE64A00753214 /* mpsicv */ = {
1900 isa = PBXNativeTarget;
1901 buildConfigurationList = 3124CADB156BE64A00753214 /* Build configuration list for PBXNativeTarget "mpsicv" */;
1902 buildPhases = (
1903 3124CAD0156BE64A00753214 /* Sources */,
1904 3124CAD1156BE64A00753214 /* Frameworks */,
1905 3124CAD2156BE64A00753214 /* CopyFiles */,
1906 );
1907 buildRules = (
1908 );
1909 dependencies = (
1910 31A47BAE156C21170039B1C2 /* PBXTargetDependency */,
1911 );
1912 name = mpsicv;
1913 productName = mpsicv;
1914 productReference = 3124CAD4156BE64A00753214 /* mpsicv */;
1915 productType = "com.apple.product-type.tool";
1916 };
1917 3124CAEA156BE7F300753214 /* amcss */ = {
1918 isa = PBXNativeTarget;
1919 buildConfigurationList = 3124CAF2156BE7F300753214 /* Build configuration list for PBXNativeTarget "amcss" */;
1920 buildPhases = (
1921 3124CAE7156BE7F300753214 /* Sources */,
1922 3124CAE8156BE7F300753214 /* Frameworks */,
1923 3124CAE9156BE7F300753214 /* CopyFiles */,
1924 );
1925 buildRules = (
1926 );
1927 dependencies = (
1928 31A47BB0156C211B0039B1C2 /* PBXTargetDependency */,
1929 );
1930 name = amcss;
1931 productName = amcss;
1932 productReference = 3124CAEB156BE7F300753214 /* amcss */;
1933 productType = "com.apple.product-type.tool";
1934 };
1935 31D6000C156D3CB200337B26 /* awluthe */ = {
1936 isa = PBXNativeTarget;
1937 buildConfigurationList = 31D60014156D3CB200337B26 /* Build configuration list for PBXNativeTarget "awluthe" */;
1938 buildPhases = (
1939 31D60009156D3CB200337B26 /* Sources */,
1940 31D6000A156D3CB200337B26 /* Frameworks */,
1941 31D6000B156D3CB200337B26 /* CopyFiles */,
1942 );
1943 buildRules = (
1944 );
1945 dependencies = (
1946 31D60020156D3CEC00337B26 /* PBXTargetDependency */,
1947 );
1948 name = awluthe;
1949 productName = awluthe;
1950 productReference = 31D6000D156D3CB200337B26 /* awluthe */;
1951 productType = "com.apple.product-type.tool";
1952 };
1953 31D60026156D3D3E00337B26 /* lockcov */ = {
1954 isa = PBXNativeTarget;
1955 buildConfigurationList = 31D6002E156D3D3F00337B26 /* Build configuration list for PBXNativeTarget "lockcov" */;
1956 buildPhases = (
1957 31D60023156D3D3E00337B26 /* Sources */,
1958 31D60024156D3D3E00337B26 /* Frameworks */,
1959 31D60025156D3D3E00337B26 /* CopyFiles */,
1960 );
1961 buildRules = (
1962 );
1963 dependencies = (
1964 31D60032156D3D5300337B26 /* PBXTargetDependency */,
1965 );
1966 name = lockcov;
1967 productName = lockcov;
1968 productReference = 31D60027156D3D3E00337B26 /* lockcov */;
1969 productType = "com.apple.product-type.tool";
1970 };
1971 31D6003D156D3EC700337B26 /* poolncv */ = {
1972 isa = PBXNativeTarget;
1973 buildConfigurationList = 31D60045156D3EC700337B26 /* Build configuration list for PBXNativeTarget "poolncv" */;
1974 buildPhases = (
1975 31D6003A156D3EC700337B26 /* Sources */,
1976 31D6003B156D3EC700337B26 /* Frameworks */,
1977 31D6003C156D3EC700337B26 /* CopyFiles */,
1978 );
1979 buildRules = (
1980 );
1981 dependencies = (
1982 31D6004D156D3EF000337B26 /* PBXTargetDependency */,
1983 );
1984 name = poolncv;
1985 productName = poolncv;
1986 productReference = 31D6003E156D3EC700337B26 /* poolncv */;
1987 productType = "com.apple.product-type.tool";
1988 };
1989 31D60053156D3F3500337B26 /* zcoll */ = {
1990 isa = PBXNativeTarget;
1991 buildConfigurationList = 31D6005B156D3F3500337B26 /* Build configuration list for PBXNativeTarget "zcoll" */;
1992 buildPhases = (
1993 31D60050156D3F3500337B26 /* Sources */,
1994 31D60051156D3F3500337B26 /* Frameworks */,
1995 31D60052156D3F3500337B26 /* CopyFiles */,
1996 );
1997 buildRules = (
1998 );
1999 dependencies = (
2000 31D60065156D3F5F00337B26 /* PBXTargetDependency */,
2001 );
2002 name = zcoll;
2003 productName = zcoll;
2004 productReference = 31D60054156D3F3500337B26 /* zcoll */;
2005 productType = "com.apple.product-type.tool";
2006 };
2007 31D60070156D3FBC00337B26 /* zmess */ = {
2008 isa = PBXNativeTarget;
2009 buildConfigurationList = 31D60078156D3FBC00337B26 /* Build configuration list for PBXNativeTarget "zmess" */;
2010 buildPhases = (
2011 31D6006D156D3FBC00337B26 /* Sources */,
2012 31D6006E156D3FBC00337B26 /* Frameworks */,
2013 31D6006F156D3FBC00337B26 /* CopyFiles */,
2014 );
2015 buildRules = (
2016 );
2017 dependencies = (
2018 31D60085156D3FE100337B26 /* PBXTargetDependency */,
2019 );
2020 name = zmess;
2021 productName = zmess;
2022 productReference = 31D60071156D3FBC00337B26 /* zmess */;
2023 productType = "com.apple.product-type.tool";
2024 };
2025 31D6008B156D402900337B26 /* steptest */ = {
2026 isa = PBXNativeTarget;
2027 buildConfigurationList = 31D60093156D402900337B26 /* Build configuration list for PBXNativeTarget "steptest" */;
2028 buildPhases = (
2029 31D60088156D402900337B26 /* Sources */,
2030 31D60089156D402900337B26 /* Frameworks */,
2031 31D6008A156D402900337B26 /* CopyFiles */,
2032 );
2033 buildRules = (
2034 );
2035 dependencies = (
2036 31D60097156D403500337B26 /* PBXTargetDependency */,
2037 );
2038 name = steptest;
2039 productName = steptest;
2040 productReference = 31D6008C156D402900337B26 /* steptest */;
2041 productType = "com.apple.product-type.tool";
2042 };
2043 31EEABFA156AAF9D00714D05 /* mps */ = {
2044 isa = PBXNativeTarget;
2045 buildConfigurationList = 31EEABFC156AAF9D00714D05 /* Build configuration list for PBXNativeTarget "mps" */;
2046 buildPhases = (
2047 31EEABF7156AAF9D00714D05 /* Sources */,
2048 31EEABF8156AAF9D00714D05 /* Frameworks */,
2049 31EEABF9156AAF9D00714D05 /* Headers */,
2050 );
2051 buildRules = (
2052 );
2053 dependencies = (
2054 );
2055 name = mps;
2056 productName = mps;
2057 productReference = 31EEABFB156AAF9D00714D05 /* libmps.a */;
2058 productType = "com.apple.product-type.library.static";
2059 };
2060 31EEAC64156AB52600714D05 /* mpmss */ = {
2061 isa = PBXNativeTarget;
2062 buildConfigurationList = 31EEAC6C156AB52600714D05 /* Build configuration list for PBXNativeTarget "mpmss" */;
2063 buildPhases = (
2064 31EEAC61156AB52600714D05 /* Sources */,
2065 31EEAC62156AB52600714D05 /* Frameworks */,
2066 31EEAC63156AB52600714D05 /* CopyFiles */,
2067 );
2068 buildRules = (
2069 );
2070 dependencies = (
2071 31A47BAA156C210D0039B1C2 /* PBXTargetDependency */,
2072 );
2073 name = mpmss;
2074 productName = mpmss;
2075 productReference = 31EEAC65156AB52600714D05 /* mpmss */;
2076 productType = "com.apple.product-type.tool";
2077 };
2078/* End PBXNativeTarget section */
2079
2080/* Begin PBXProject section */
2081 31EEABDA156AAE9E00714D05 /* Project object */ = {
2082 isa = PBXProject;
2083 attributes = {
2084 LastUpgradeCheck = 0430;
2085 };
2086 buildConfigurationList = 31EEABDD156AAE9E00714D05 /* Build configuration list for PBXProject "mps" */;
2087 compatibilityVersion = "Xcode 3.2";
2088 developmentRegion = English;
2089 hasScannedForEncodings = 0;
2090 knownRegions = (
2091 en,
2092 );
2093 mainGroup = 31EEABD8156AAE9E00714D05;
2094 productRefGroup = 31EEABEF156AAF5C00714D05 /* Products */;
2095 projectDirPath = "";
2096 projectRoot = "";
2097 targets = (
2098 3104AFF1156D37A0000A585A /* all */,
2099 31EEABFA156AAF9D00714D05 /* mps */,
2100 3124CAEA156BE7F300753214 /* amcss */,
2101 3104AFB2156D357B000A585A /* apss */,
2102 3124CAB7156BE3EC00753214 /* awlut */,
2103 31EEAC64156AB52600714D05 /* mpmss */,
2104 3124CAD3156BE64A00753214 /* mpsicv */,
2105 3104AFC7156D35E2000A585A /* sacss */,
2106 3104AFDC156D3681000A585A /* amcsshe */,
2107 3104B008156D38F3000A585A /* amsss */,
2108 3104B021156D39D4000A585A /* amssshe */,
2109 3104B03C156D3AD7000A585A /* segsmss */,
2110 31D6000C156D3CB200337B26 /* awluthe */,
2111 31D60026156D3D3E00337B26 /* lockcov */,
2112 31D6003D156D3EC700337B26 /* poolncv */,
2113 31D60053156D3F3500337B26 /* zcoll */,
2114 31D60070156D3FBC00337B26 /* zmess */,
2115 31D6008B156D402900337B26 /* steptest */,
2116 3114A58F156E913C001E0AA3 /* locv */,
2117 3114A5A6156E92C0001E0AA3 /* qs */,
2118 3114A5BC156E9315001E0AA3 /* finalcv */,
2119 3114A5D5156E93A0001E0AA3 /* finaltest */,
2120 3114A5EE156E93E7001E0AA3 /* arenacv */,
2121 3114A604156E9430001E0AA3 /* bttest */,
2122 3114A61B156E9485001E0AA3 /* teletest */,
2123 3114A632156E94DB001E0AA3 /* abqtest */,
2124 3114A64B156E9596001E0AA3 /* cbstest */,
2125 3114A661156E95D9001E0AA3 /* btcv */,
2126 3114A67B156E9668001E0AA3 /* mv2test */,
2127 3114A694156E971B001E0AA3 /* messtest */,
2128 3114A6AB156E9759001E0AA3 /* walkt0 */,
2129 3114A6C5156E9815001E0AA3 /* eventcnv */,
2130 );
2131 };
2132/* End PBXProject section */
2133
2134/* Begin PBXSourcesBuildPhase section */
2135 3104AFAF156D357B000A585A /* Sources */ = {
2136 isa = PBXSourcesBuildPhase;
2137 buildActionMask = 2147483647;
2138 files = (
2139 3104AFBF156D3591000A585A /* apss.c in Sources */,
2140 3104AFC3156D35C3000A585A /* testlib.c in Sources */,
2141 );
2142 runOnlyForDeploymentPostprocessing = 0;
2143 };
2144 3104AFC4156D35E2000A585A /* Sources */ = {
2145 isa = PBXSourcesBuildPhase;
2146 buildActionMask = 2147483647;
2147 files = (
2148 3104AFD5156D35FB000A585A /* testlib.c in Sources */,
2149 3104AFD8156D3607000A585A /* sacss.c in Sources */,
2150 );
2151 runOnlyForDeploymentPostprocessing = 0;
2152 };
2153 3104AFD9156D3681000A585A /* Sources */ = {
2154 isa = PBXSourcesBuildPhase;
2155 buildActionMask = 2147483647;
2156 files = (
2157 3104AFEA156D3697000A585A /* testlib.c in Sources */,
2158 3104AFEC156D36A5000A585A /* amcsshe.c in Sources */,
2159 3104AFED156D374A000A585A /* fmthe.c in Sources */,
2160 3104AFEE156D374D000A585A /* fmtno.c in Sources */,
2161 3104AFEF156D3753000A585A /* fmtdy.c in Sources */,
2162 3104AFF0156D3756000A585A /* fmtdytst.c in Sources */,
2163 );
2164 runOnlyForDeploymentPostprocessing = 0;
2165 };
2166 3104B005156D38F3000A585A /* Sources */ = {
2167 isa = PBXSourcesBuildPhase;
2168 buildActionMask = 2147483647;
2169 files = (
2170 3104B016156D390B000A585A /* amsss.c in Sources */,
2171 3104B017156D3915000A585A /* testlib.c in Sources */,
2172 3104B019156D3960000A585A /* fmtdy.c in Sources */,
2173 3104B01A156D396E000A585A /* fmtdytst.c in Sources */,
2174 3104B01B156D3973000A585A /* fmtno.c in Sources */,
2175 );
2176 runOnlyForDeploymentPostprocessing = 0;
2177 };
2178 3104B01E156D39D4000A585A /* Sources */ = {
2179 isa = PBXSourcesBuildPhase;
2180 buildActionMask = 2147483647;
2181 files = (
2182 3104B031156D39FD000A585A /* fmthe.c in Sources */,
2183 3104B032156D3A00000A585A /* fmtdytst.c in Sources */,
2184 3104B033156D3A05000A585A /* testlib.c in Sources */,
2185 3104B034156D3A2C000A585A /* amssshe.c in Sources */,
2186 3104B035156D3A39000A585A /* fmtdy.c in Sources */,
2187 3104B036156D3A49000A585A /* fmtno.c in Sources */,
2188 );
2189 runOnlyForDeploymentPostprocessing = 0;
2190 };
2191 3104B039156D3AD7000A585A /* Sources */ = {
2192 isa = PBXSourcesBuildPhase;
2193 buildActionMask = 2147483647;
2194 files = (
2195 3104B04E156D3AFE000A585A /* testlib.c in Sources */,
2196 3104B04F156D3B09000A585A /* fmtdy.c in Sources */,
2197 3104B050156D3B09000A585A /* fmtdytst.c in Sources */,
2198 3104B051156D3B09000A585A /* fmtno.c in Sources */,
2199 31D60007156D3C6200337B26 /* segsmss.c in Sources */,
2200 );
2201 runOnlyForDeploymentPostprocessing = 0;
2202 };
2203 3114A58C156E913C001E0AA3 /* Sources */ = {
2204 isa = PBXSourcesBuildPhase;
2205 buildActionMask = 2147483647;
2206 files = (
2207 3114A59C156E914F001E0AA3 /* testlib.c in Sources */,
2208 3114A5A2156E9168001E0AA3 /* locv.c in Sources */,
2209 );
2210 runOnlyForDeploymentPostprocessing = 0;
2211 };
2212 3114A5A3156E92C0001E0AA3 /* Sources */ = {
2213 isa = PBXSourcesBuildPhase;
2214 buildActionMask = 2147483647;
2215 files = (
2216 3114A5B2156E92CB001E0AA3 /* testlib.c in Sources */,
2217 3114A5B8156E92F1001E0AA3 /* qs.c in Sources */,
2218 );
2219 runOnlyForDeploymentPostprocessing = 0;
2220 };
2221 3114A5B9156E9315001E0AA3 /* Sources */ = {
2222 isa = PBXSourcesBuildPhase;
2223 buildActionMask = 2147483647;
2224 files = (
2225 3114A5C7156E9322001E0AA3 /* testlib.c in Sources */,
2226 3114A5CE156E9369001E0AA3 /* finalcv.c in Sources */,
2227 3114A5CF156E9381001E0AA3 /* fmtdy.c in Sources */,
2228 3114A5D0156E9381001E0AA3 /* fmtdytst.c in Sources */,
2229 3114A5D1156E9381001E0AA3 /* fmtno.c in Sources */,
2230 );
2231 runOnlyForDeploymentPostprocessing = 0;
2232 };
2233 3114A5D2156E93A0001E0AA3 /* Sources */ = {
2234 isa = PBXSourcesBuildPhase;
2235 buildActionMask = 2147483647;
2236 files = (
2237 3114A5E0156E93AE001E0AA3 /* fmtdy.c in Sources */,
2238 3114A5E1156E93AE001E0AA3 /* fmtdytst.c in Sources */,
2239 3114A5E2156E93AE001E0AA3 /* fmtno.c in Sources */,
2240 3114A5E3156E93AE001E0AA3 /* testlib.c in Sources */,
2241 3114A5E6156E93B9001E0AA3 /* finaltest.c in Sources */,
2242 );
2243 runOnlyForDeploymentPostprocessing = 0;
2244 };
2245 3114A5EB156E93E7001E0AA3 /* Sources */ = {
2246 isa = PBXSourcesBuildPhase;
2247 buildActionMask = 2147483647;
2248 files = (
2249 3114A5F9156E93F3001E0AA3 /* testlib.c in Sources */,
2250 3114A5FC156E93FC001E0AA3 /* arenacv.c in Sources */,
2251 );
2252 runOnlyForDeploymentPostprocessing = 0;
2253 };
2254 3114A601156E9430001E0AA3 /* Sources */ = {
2255 isa = PBXSourcesBuildPhase;
2256 buildActionMask = 2147483647;
2257 files = (
2258 3114A615156E944E001E0AA3 /* bttest.c in Sources */,
2259 3114A616156E9455001E0AA3 /* testlib.c in Sources */,
2260 );
2261 runOnlyForDeploymentPostprocessing = 0;
2262 };
2263 3114A618156E9485001E0AA3 /* Sources */ = {
2264 isa = PBXSourcesBuildPhase;
2265 buildActionMask = 2147483647;
2266 files = (
2267 3114A627156E9490001E0AA3 /* testlib.c in Sources */,
2268 3114A62A156E949E001E0AA3 /* teletest.c in Sources */,
2269 );
2270 runOnlyForDeploymentPostprocessing = 0;
2271 };
2272 3114A62F156E94DB001E0AA3 /* Sources */ = {
2273 isa = PBXSourcesBuildPhase;
2274 buildActionMask = 2147483647;
2275 files = (
2276 3114A63E156E94EA001E0AA3 /* abqtest.c in Sources */,
2277 3114A63F156E94F0001E0AA3 /* testlib.c in Sources */,
2278 3114A646156E9525001E0AA3 /* abq.c in Sources */,
2279 );
2280 runOnlyForDeploymentPostprocessing = 0;
2281 };
2282 3114A648156E9596001E0AA3 /* Sources */ = {
2283 isa = PBXSourcesBuildPhase;
2284 buildActionMask = 2147483647;
2285 files = (
2286 3114A657156E95A6001E0AA3 /* cbstest.c in Sources */,
2287 3114A672156E95F6001E0AA3 /* testlib.c in Sources */,
2288 );
2289 runOnlyForDeploymentPostprocessing = 0;
2290 };
2291 3114A65E156E95D9001E0AA3 /* Sources */ = {
2292 isa = PBXSourcesBuildPhase;
2293 buildActionMask = 2147483647;
2294 files = (
2295 3114A66E156E95F2001E0AA3 /* btcv.c in Sources */,
2296 3114A66F156E95F2001E0AA3 /* testlib.c in Sources */,
2297 );
2298 runOnlyForDeploymentPostprocessing = 0;
2299 };
2300 3114A678156E9668001E0AA3 /* Sources */ = {
2301 isa = PBXSourcesBuildPhase;
2302 buildActionMask = 2147483647;
2303 files = (
2304 3114A687156E9674001E0AA3 /* mv2test.c in Sources */,
2305 3114A688156E967C001E0AA3 /* testlib.c in Sources */,
2306 3114A68F156E96B6001E0AA3 /* poolmv2.c in Sources */,
2307 3114A690156E96CE001E0AA3 /* abq.c in Sources */,
2308 );
2309 runOnlyForDeploymentPostprocessing = 0;
2310 };
2311 3114A691156E971B001E0AA3 /* Sources */ = {
2312 isa = PBXSourcesBuildPhase;
2313 buildActionMask = 2147483647;
2314 files = (
2315 3114A6A1156E9729001E0AA3 /* messtest.c in Sources */,
2316 3114A6A2156E972D001E0AA3 /* testlib.c in Sources */,
2317 );
2318 runOnlyForDeploymentPostprocessing = 0;
2319 };
2320 3114A6A8156E9759001E0AA3 /* Sources */ = {
2321 isa = PBXSourcesBuildPhase;
2322 buildActionMask = 2147483647;
2323 files = (
2324 3114A6BC156E976C001E0AA3 /* walkt0.c in Sources */,
2325 3114A6BD156E9771001E0AA3 /* testlib.c in Sources */,
2326 3114A6BF156E97B8001E0AA3 /* fmtdy.c in Sources */,
2327 3114A6C0156E97B8001E0AA3 /* fmtdytst.c in Sources */,
2328 3114A6C1156E97B8001E0AA3 /* fmtno.c in Sources */,
2329 );
2330 runOnlyForDeploymentPostprocessing = 0;
2331 };
2332 3114A6C2156E9815001E0AA3 /* Sources */ = {
2333 isa = PBXSourcesBuildPhase;
2334 buildActionMask = 2147483647;
2335 files = (
2336 3114A6D1156E9829001E0AA3 /* eventcnv.c in Sources */,
2337 3114A6DA156E9950001E0AA3 /* eventpro.c in Sources */,
2338 3114A6DC156E995A001E0AA3 /* table.c in Sources */,
2339 );
2340 runOnlyForDeploymentPostprocessing = 0;
2341 };
2342 3124CAB4156BE3EC00753214 /* Sources */ = {
2343 isa = PBXSourcesBuildPhase;
2344 buildActionMask = 2147483647;
2345 files = (
2346 3124CAC3156BE40100753214 /* awlut.c in Sources */,
2347 3124CAC5156BE41700753214 /* testlib.c in Sources */,
2348 3124CAC8156BE48D00753214 /* fmtdy.c in Sources */,
2349 3124CAC9156BE48D00753214 /* fmtdytst.c in Sources */,
2350 3124CACD156BE4C200753214 /* fmtno.c in Sources */,
2351 );
2352 runOnlyForDeploymentPostprocessing = 0;
2353 };
2354 3124CAD0156BE64A00753214 /* Sources */ = {
2355 isa = PBXSourcesBuildPhase;
2356 buildActionMask = 2147483647;
2357 files = (
2358 3124CADF156BE65900753214 /* mpsicv.c in Sources */,
2359 3124CAE0156BE66B00753214 /* testlib.c in Sources */,
2360 3124CAE2156BE68E00753214 /* fmtdy.c in Sources */,
2361 3124CAE3156BE69B00753214 /* fmtno.c in Sources */,
2362 3124CAE5156BE6D500753214 /* fmthe.c in Sources */,
2363 3124CAE6156BE6F700753214 /* fmtdytst.c in Sources */,
2364 );
2365 runOnlyForDeploymentPostprocessing = 0;
2366 };
2367 3124CAE7156BE7F300753214 /* Sources */ = {
2368 isa = PBXSourcesBuildPhase;
2369 buildActionMask = 2147483647;
2370 files = (
2371 3124CAF6156BE81100753214 /* amcss.c in Sources */,
2372 3124CAF7156BE82000753214 /* fmtdy.c in Sources */,
2373 3124CAF8156BE82000753214 /* fmtdytst.c in Sources */,
2374 3124CAF9156BE82000753214 /* fmthe.c in Sources */,
2375 3124CAFA156BE82000753214 /* fmtno.c in Sources */,
2376 3124CAFB156BE82000753214 /* testlib.c in Sources */,
2377 );
2378 runOnlyForDeploymentPostprocessing = 0;
2379 };
2380 31D60009156D3CB200337B26 /* Sources */ = {
2381 isa = PBXSourcesBuildPhase;
2382 buildActionMask = 2147483647;
2383 files = (
2384 31D60018156D3CC300337B26 /* awluthe.c in Sources */,
2385 31D6001A156D3CDC00337B26 /* fmtdy.c in Sources */,
2386 31D6001B156D3CDC00337B26 /* fmtdytst.c in Sources */,
2387 31D6001C156D3CDC00337B26 /* fmthe.c in Sources */,
2388 31D6001D156D3CDC00337B26 /* fmtno.c in Sources */,
2389 31D6001E156D3CDF00337B26 /* testlib.c in Sources */,
2390 );
2391 runOnlyForDeploymentPostprocessing = 0;
2392 };
2393 31D60023156D3D3E00337B26 /* Sources */ = {
2394 isa = PBXSourcesBuildPhase;
2395 buildActionMask = 2147483647;
2396 files = (
2397 31D60038156D3E3000337B26 /* lockcov.c in Sources */,
2398 31D60039156D3E3E00337B26 /* testlib.c in Sources */,
2399 );
2400 runOnlyForDeploymentPostprocessing = 0;
2401 };
2402 31D6003A156D3EC700337B26 /* Sources */ = {
2403 isa = PBXSourcesBuildPhase;
2404 buildActionMask = 2147483647;
2405 files = (
2406 31D60048156D3ECF00337B26 /* testlib.c in Sources */,
2407 31D6004B156D3EE600337B26 /* poolncv.c in Sources */,
2408 );
2409 runOnlyForDeploymentPostprocessing = 0;
2410 };
2411 31D60050156D3F3500337B26 /* Sources */ = {
2412 isa = PBXSourcesBuildPhase;
2413 buildActionMask = 2147483647;
2414 files = (
2415 31D6005F156D3F4A00337B26 /* zcoll.c in Sources */,
2416 31D60069156D3F7200337B26 /* fmtdy.c in Sources */,
2417 31D6006A156D3F7200337B26 /* fmtdytst.c in Sources */,
2418 31D6006B156D3F7200337B26 /* fmtno.c in Sources */,
2419 31D6006C156D3F7200337B26 /* testlib.c in Sources */,
2420 );
2421 runOnlyForDeploymentPostprocessing = 0;
2422 };
2423 31D6006D156D3FBC00337B26 /* Sources */ = {
2424 isa = PBXSourcesBuildPhase;
2425 buildActionMask = 2147483647;
2426 files = (
2427 31D6007D156D3FCF00337B26 /* zmess.c in Sources */,
2428 31D6007E156D3FD700337B26 /* fmtdy.c in Sources */,
2429 31D6007F156D3FD700337B26 /* fmtdytst.c in Sources */,
2430 31D60080156D3FD700337B26 /* fmthe.c in Sources */,
2431 31D60081156D3FD700337B26 /* fmtno.c in Sources */,
2432 31D60082156D3FD700337B26 /* testlib.c in Sources */,
2433 );
2434 runOnlyForDeploymentPostprocessing = 0;
2435 };
2436 31D60088156D402900337B26 /* Sources */ = {
2437 isa = PBXSourcesBuildPhase;
2438 buildActionMask = 2147483647;
2439 files = (
2440 31D6009A156D404000337B26 /* steptest.c in Sources */,
2441 31D6009E156D406400337B26 /* fmtdy.c in Sources */,
2442 31D6009F156D406400337B26 /* fmtdytst.c in Sources */,
2443 31D600A0156D406400337B26 /* fmtno.c in Sources */,
2444 31D600A1156D406400337B26 /* testlib.c in Sources */,
2445 );
2446 runOnlyForDeploymentPostprocessing = 0;
2447 };
2448 31EEABF7156AAF9D00714D05 /* Sources */ = {
2449 isa = PBXSourcesBuildPhase;
2450 buildActionMask = 2147483647;
2451 files = (
2452 31A47BA4156C1E130039B1C2 /* mps.c in Sources */,
2453 );
2454 runOnlyForDeploymentPostprocessing = 0;
2455 };
2456 31EEAC61156AB52600714D05 /* Sources */ = {
2457 isa = PBXSourcesBuildPhase;
2458 buildActionMask = 2147483647;
2459 files = (
2460 31EEAC75156AB58E00714D05 /* mpmss.c in Sources */,
2461 31EEAC9F156AB73400714D05 /* testlib.c in Sources */,
2462 );
2463 runOnlyForDeploymentPostprocessing = 0;
2464 };
2465/* End PBXSourcesBuildPhase section */
2466
2467/* Begin PBXTargetDependency section */
2468 3104AFC1156D35AE000A585A /* PBXTargetDependency */ = {
2469 isa = PBXTargetDependency;
2470 target = 31EEABFA156AAF9D00714D05 /* mps */;
2471 targetProxy = 3104AFC0156D35AE000A585A /* PBXContainerItemProxy */;
2472 };
2473 3104AFD3156D35F2000A585A /* PBXTargetDependency */ = {
2474 isa = PBXTargetDependency;
2475 target = 31EEABFA156AAF9D00714D05 /* mps */;
2476 targetProxy = 3104AFD2156D35F2000A585A /* PBXContainerItemProxy */;
2477 };
2478 3104AFE8156D368D000A585A /* PBXTargetDependency */ = {
2479 isa = PBXTargetDependency;
2480 target = 31EEABFA156AAF9D00714D05 /* mps */;
2481 targetProxy = 3104AFE7156D368D000A585A /* PBXContainerItemProxy */;
2482 };
2483 3104AFF6156D37BC000A585A /* PBXTargetDependency */ = {
2484 isa = PBXTargetDependency;
2485 target = 31EEABFA156AAF9D00714D05 /* mps */;
2486 targetProxy = 3104AFF5156D37BC000A585A /* PBXContainerItemProxy */;
2487 };
2488 3104AFF8156D37BE000A585A /* PBXTargetDependency */ = {
2489 isa = PBXTargetDependency;
2490 target = 3124CAEA156BE7F300753214 /* amcss */;
2491 targetProxy = 3104AFF7156D37BE000A585A /* PBXContainerItemProxy */;
2492 };
2493 3104AFFA156D37C1000A585A /* PBXTargetDependency */ = {
2494 isa = PBXTargetDependency;
2495 target = 3104AFB2156D357B000A585A /* apss */;
2496 targetProxy = 3104AFF9156D37C1000A585A /* PBXContainerItemProxy */;
2497 };
2498 3104AFFC156D37C3000A585A /* PBXTargetDependency */ = {
2499 isa = PBXTargetDependency;
2500 target = 3124CAB7156BE3EC00753214 /* awlut */;
2501 targetProxy = 3104AFFB156D37C3000A585A /* PBXContainerItemProxy */;
2502 };
2503 3104AFFE156D37C6000A585A /* PBXTargetDependency */ = {
2504 isa = PBXTargetDependency;
2505 target = 31EEAC64156AB52600714D05 /* mpmss */;
2506 targetProxy = 3104AFFD156D37C6000A585A /* PBXContainerItemProxy */;
2507 };
2508 3104B000156D37C8000A585A /* PBXTargetDependency */ = {
2509 isa = PBXTargetDependency;
2510 target = 3124CAD3156BE64A00753214 /* mpsicv */;
2511 targetProxy = 3104AFFF156D37C8000A585A /* PBXContainerItemProxy */;
2512 };
2513 3104B002156D37CB000A585A /* PBXTargetDependency */ = {
2514 isa = PBXTargetDependency;
2515 target = 3104AFC7156D35E2000A585A /* sacss */;
2516 targetProxy = 3104B001156D37CB000A585A /* PBXContainerItemProxy */;
2517 };
2518 3104B004156D37CD000A585A /* PBXTargetDependency */ = {
2519 isa = PBXTargetDependency;
2520 target = 3104AFDC156D3681000A585A /* amcsshe */;
2521 targetProxy = 3104B003156D37CD000A585A /* PBXContainerItemProxy */;
2522 };
2523 3104B014156D38FA000A585A /* PBXTargetDependency */ = {
2524 isa = PBXTargetDependency;
2525 target = 31EEABFA156AAF9D00714D05 /* mps */;
2526 targetProxy = 3104B013156D38FA000A585A /* PBXContainerItemProxy */;
2527 };
2528 3104B01D156D398B000A585A /* PBXTargetDependency */ = {
2529 isa = PBXTargetDependency;
2530 target = 3104B008156D38F3000A585A /* amsss */;
2531 targetProxy = 3104B01C156D398B000A585A /* PBXContainerItemProxy */;
2532 };
2533 3104B02D156D39DF000A585A /* PBXTargetDependency */ = {
2534 isa = PBXTargetDependency;
2535 target = 3104B021156D39D4000A585A /* amssshe */;
2536 targetProxy = 3104B02C156D39DF000A585A /* PBXContainerItemProxy */;
2537 };
2538 3104B038156D3A56000A585A /* PBXTargetDependency */ = {
2539 isa = PBXTargetDependency;
2540 target = 31EEABFA156AAF9D00714D05 /* mps */;
2541 targetProxy = 3104B037156D3A56000A585A /* PBXContainerItemProxy */;
2542 };
2543 3104B048156D3ADE000A585A /* PBXTargetDependency */ = {
2544 isa = PBXTargetDependency;
2545 target = 31EEABFA156AAF9D00714D05 /* mps */;
2546 targetProxy = 3104B047156D3ADE000A585A /* PBXContainerItemProxy */;
2547 };
2548 3104B04A156D3AE4000A585A /* PBXTargetDependency */ = {
2549 isa = PBXTargetDependency;
2550 target = 3104B03C156D3AD7000A585A /* segsmss */;
2551 targetProxy = 3104B049156D3AE4000A585A /* PBXContainerItemProxy */;
2552 };
2553 3114A59E156E9156001E0AA3 /* PBXTargetDependency */ = {
2554 isa = PBXTargetDependency;
2555 target = 31EEABFA156AAF9D00714D05 /* mps */;
2556 targetProxy = 3114A59D156E9156001E0AA3 /* PBXContainerItemProxy */;
2557 };
2558 3114A5A0156E915A001E0AA3 /* PBXTargetDependency */ = {
2559 isa = PBXTargetDependency;
2560 target = 3114A58F156E913C001E0AA3 /* locv */;
2561 targetProxy = 3114A59F156E915A001E0AA3 /* PBXContainerItemProxy */;
2562 };
2563 3114A5B4156E92D8001E0AA3 /* PBXTargetDependency */ = {
2564 isa = PBXTargetDependency;
2565 target = 31EEABFA156AAF9D00714D05 /* mps */;
2566 targetProxy = 3114A5B3156E92D8001E0AA3 /* PBXContainerItemProxy */;
2567 };
2568 3114A5B6156E92DC001E0AA3 /* PBXTargetDependency */ = {
2569 isa = PBXTargetDependency;
2570 target = 3114A5A6156E92C0001E0AA3 /* qs */;
2571 targetProxy = 3114A5B5156E92DC001E0AA3 /* PBXContainerItemProxy */;
2572 };
2573 3114A5CA156E9328001E0AA3 /* PBXTargetDependency */ = {
2574 isa = PBXTargetDependency;
2575 target = 31EEABFA156AAF9D00714D05 /* mps */;
2576 targetProxy = 3114A5C9156E9328001E0AA3 /* PBXContainerItemProxy */;
2577 };
2578 3114A5CC156E932C001E0AA3 /* PBXTargetDependency */ = {
2579 isa = PBXTargetDependency;
2580 target = 3114A5BC156E9315001E0AA3 /* finalcv */;
2581 targetProxy = 3114A5CB156E932C001E0AA3 /* PBXContainerItemProxy */;
2582 };
2583 3114A5E8156E93BF001E0AA3 /* PBXTargetDependency */ = {
2584 isa = PBXTargetDependency;
2585 target = 31EEABFA156AAF9D00714D05 /* mps */;
2586 targetProxy = 3114A5E7156E93BF001E0AA3 /* PBXContainerItemProxy */;
2587 };
2588 3114A5EA156E93C4001E0AA3 /* PBXTargetDependency */ = {
2589 isa = PBXTargetDependency;
2590 target = 3114A5D5156E93A0001E0AA3 /* finaltest */;
2591 targetProxy = 3114A5E9156E93C4001E0AA3 /* PBXContainerItemProxy */;
2592 };
2593 3114A5FE156E9406001E0AA3 /* PBXTargetDependency */ = {
2594 isa = PBXTargetDependency;
2595 target = 31EEABFA156AAF9D00714D05 /* mps */;
2596 targetProxy = 3114A5FD156E9406001E0AA3 /* PBXContainerItemProxy */;
2597 };
2598 3114A600156E940A001E0AA3 /* PBXTargetDependency */ = {
2599 isa = PBXTargetDependency;
2600 target = 3114A5EE156E93E7001E0AA3 /* arenacv */;
2601 targetProxy = 3114A5FF156E940A001E0AA3 /* PBXContainerItemProxy */;
2602 };
2603 3114A610156E9438001E0AA3 /* PBXTargetDependency */ = {
2604 isa = PBXTargetDependency;
2605 target = 31EEABFA156AAF9D00714D05 /* mps */;
2606 targetProxy = 3114A60F156E9438001E0AA3 /* PBXContainerItemProxy */;
2607 };
2608 3114A612156E943B001E0AA3 /* PBXTargetDependency */ = {
2609 isa = PBXTargetDependency;
2610 target = 3114A604156E9430001E0AA3 /* bttest */;
2611 targetProxy = 3114A611156E943B001E0AA3 /* PBXContainerItemProxy */;
2612 };
2613 3114A62C156E94A6001E0AA3 /* PBXTargetDependency */ = {
2614 isa = PBXTargetDependency;
2615 target = 31EEABFA156AAF9D00714D05 /* mps */;
2616 targetProxy = 3114A62B156E94A6001E0AA3 /* PBXContainerItemProxy */;
2617 };
2618 3114A62E156E94AA001E0AA3 /* PBXTargetDependency */ = {
2619 isa = PBXTargetDependency;
2620 target = 3114A61B156E9485001E0AA3 /* teletest */;
2621 targetProxy = 3114A62D156E94AA001E0AA3 /* PBXContainerItemProxy */;
2622 };
2623 3114A642156E94F8001E0AA3 /* PBXTargetDependency */ = {
2624 isa = PBXTargetDependency;
2625 target = 31EEABFA156AAF9D00714D05 /* mps */;
2626 targetProxy = 3114A641156E94F8001E0AA3 /* PBXContainerItemProxy */;
2627 };
2628 3114A644156E94FB001E0AA3 /* PBXTargetDependency */ = {
2629 isa = PBXTargetDependency;
2630 target = 3114A632156E94DB001E0AA3 /* abqtest */;
2631 targetProxy = 3114A643156E94FB001E0AA3 /* PBXContainerItemProxy */;
2632 };
2633 3114A659156E95B1001E0AA3 /* PBXTargetDependency */ = {
2634 isa = PBXTargetDependency;
2635 target = 31EEABFA156AAF9D00714D05 /* mps */;
2636 targetProxy = 3114A658156E95B1001E0AA3 /* PBXContainerItemProxy */;
2637 };
2638 3114A65B156E95B4001E0AA3 /* PBXTargetDependency */ = {
2639 isa = PBXTargetDependency;
2640 target = 3114A64B156E9596001E0AA3 /* cbstest */;
2641 targetProxy = 3114A65A156E95B4001E0AA3 /* PBXContainerItemProxy */;
2642 };
2643 3114A675156E9619001E0AA3 /* PBXTargetDependency */ = {
2644 isa = PBXTargetDependency;
2645 target = 31EEABFA156AAF9D00714D05 /* mps */;
2646 targetProxy = 3114A674156E9619001E0AA3 /* PBXContainerItemProxy */;
2647 };
2648 3114A677156E961C001E0AA3 /* PBXTargetDependency */ = {
2649 isa = PBXTargetDependency;
2650 target = 3114A661156E95D9001E0AA3 /* btcv */;
2651 targetProxy = 3114A676156E961C001E0AA3 /* PBXContainerItemProxy */;
2652 };
2653 3114A68B156E9682001E0AA3 /* PBXTargetDependency */ = {
2654 isa = PBXTargetDependency;
2655 target = 31EEABFA156AAF9D00714D05 /* mps */;
2656 targetProxy = 3114A68A156E9682001E0AA3 /* PBXContainerItemProxy */;
2657 };
2658 3114A68D156E9686001E0AA3 /* PBXTargetDependency */ = {
2659 isa = PBXTargetDependency;
2660 target = 3114A67B156E9668001E0AA3 /* mv2test */;
2661 targetProxy = 3114A68C156E9686001E0AA3 /* PBXContainerItemProxy */;
2662 };
2663 3114A6A5156E9735001E0AA3 /* PBXTargetDependency */ = {
2664 isa = PBXTargetDependency;
2665 target = 31EEABFA156AAF9D00714D05 /* mps */;
2666 targetProxy = 3114A6A4156E9735001E0AA3 /* PBXContainerItemProxy */;
2667 };
2668 3114A6A7156E9739001E0AA3 /* PBXTargetDependency */ = {
2669 isa = PBXTargetDependency;
2670 target = 3114A694156E971B001E0AA3 /* messtest */;
2671 targetProxy = 3114A6A6156E9739001E0AA3 /* PBXContainerItemProxy */;
2672 };
2673 3114A6B7156E975E001E0AA3 /* PBXTargetDependency */ = {
2674 isa = PBXTargetDependency;
2675 target = 31EEABFA156AAF9D00714D05 /* mps */;
2676 targetProxy = 3114A6B6156E975E001E0AA3 /* PBXContainerItemProxy */;
2677 };
2678 3114A6B9156E9763001E0AA3 /* PBXTargetDependency */ = {
2679 isa = PBXTargetDependency;
2680 target = 3114A6AB156E9759001E0AA3 /* walkt0 */;
2681 targetProxy = 3114A6B8156E9763001E0AA3 /* PBXContainerItemProxy */;
2682 };
2683 3114A6D3156E9834001E0AA3 /* PBXTargetDependency */ = {
2684 isa = PBXTargetDependency;
2685 target = 31EEABFA156AAF9D00714D05 /* mps */;
2686 targetProxy = 3114A6D2156E9834001E0AA3 /* PBXContainerItemProxy */;
2687 };
2688 3114A6D5156E9839001E0AA3 /* PBXTargetDependency */ = {
2689 isa = PBXTargetDependency;
2690 target = 3114A6C5156E9815001E0AA3 /* eventcnv */;
2691 targetProxy = 3114A6D4156E9839001E0AA3 /* PBXContainerItemProxy */;
2692 };
2693 31A47BAA156C210D0039B1C2 /* PBXTargetDependency */ = {
2694 isa = PBXTargetDependency;
2695 target = 31EEABFA156AAF9D00714D05 /* mps */;
2696 targetProxy = 31A47BA9156C210D0039B1C2 /* PBXContainerItemProxy */;
2697 };
2698 31A47BAC156C21120039B1C2 /* PBXTargetDependency */ = {
2699 isa = PBXTargetDependency;
2700 target = 31EEABFA156AAF9D00714D05 /* mps */;
2701 targetProxy = 31A47BAB156C21120039B1C2 /* PBXContainerItemProxy */;
2702 };
2703 31A47BAE156C21170039B1C2 /* PBXTargetDependency */ = {
2704 isa = PBXTargetDependency;
2705 target = 31EEABFA156AAF9D00714D05 /* mps */;
2706 targetProxy = 31A47BAD156C21170039B1C2 /* PBXContainerItemProxy */;
2707 };
2708 31A47BB0156C211B0039B1C2 /* PBXTargetDependency */ = {
2709 isa = PBXTargetDependency;
2710 target = 31EEABFA156AAF9D00714D05 /* mps */;
2711 targetProxy = 31A47BAF156C211B0039B1C2 /* PBXContainerItemProxy */;
2712 };
2713 31D60020156D3CEC00337B26 /* PBXTargetDependency */ = {
2714 isa = PBXTargetDependency;
2715 target = 31EEABFA156AAF9D00714D05 /* mps */;
2716 targetProxy = 31D6001F156D3CEC00337B26 /* PBXContainerItemProxy */;
2717 };
2718 31D60022156D3CF200337B26 /* PBXTargetDependency */ = {
2719 isa = PBXTargetDependency;
2720 target = 31D6000C156D3CB200337B26 /* awluthe */;
2721 targetProxy = 31D60021156D3CF200337B26 /* PBXContainerItemProxy */;
2722 };
2723 31D60032156D3D5300337B26 /* PBXTargetDependency */ = {
2724 isa = PBXTargetDependency;
2725 target = 31EEABFA156AAF9D00714D05 /* mps */;
2726 targetProxy = 31D60031156D3D5300337B26 /* PBXContainerItemProxy */;
2727 };
2728 31D60034156D3D5A00337B26 /* PBXTargetDependency */ = {
2729 isa = PBXTargetDependency;
2730 target = 31D60026156D3D3E00337B26 /* lockcov */;
2731 targetProxy = 31D60033156D3D5A00337B26 /* PBXContainerItemProxy */;
2732 };
2733 31D6004D156D3EF000337B26 /* PBXTargetDependency */ = {
2734 isa = PBXTargetDependency;
2735 target = 31EEABFA156AAF9D00714D05 /* mps */;
2736 targetProxy = 31D6004C156D3EF000337B26 /* PBXContainerItemProxy */;
2737 };
2738 31D6004F156D3EF700337B26 /* PBXTargetDependency */ = {
2739 isa = PBXTargetDependency;
2740 target = 31D6003D156D3EC700337B26 /* poolncv */;
2741 targetProxy = 31D6004E156D3EF700337B26 /* PBXContainerItemProxy */;
2742 };
2743 31D60063156D3F5C00337B26 /* PBXTargetDependency */ = {
2744 isa = PBXTargetDependency;
2745 target = 31D60053156D3F3500337B26 /* zcoll */;
2746 targetProxy = 31D60062156D3F5C00337B26 /* PBXContainerItemProxy */;
2747 };
2748 31D60065156D3F5F00337B26 /* PBXTargetDependency */ = {
2749 isa = PBXTargetDependency;
2750 target = 31EEABFA156AAF9D00714D05 /* mps */;
2751 targetProxy = 31D60064156D3F5F00337B26 /* PBXContainerItemProxy */;
2752 };
2753 31D60085156D3FE100337B26 /* PBXTargetDependency */ = {
2754 isa = PBXTargetDependency;
2755 target = 31EEABFA156AAF9D00714D05 /* mps */;
2756 targetProxy = 31D60084156D3FE100337B26 /* PBXContainerItemProxy */;
2757 };
2758 31D60087156D3FE600337B26 /* PBXTargetDependency */ = {
2759 isa = PBXTargetDependency;
2760 target = 31D60070156D3FBC00337B26 /* zmess */;
2761 targetProxy = 31D60086156D3FE600337B26 /* PBXContainerItemProxy */;
2762 };
2763 31D60097156D403500337B26 /* PBXTargetDependency */ = {
2764 isa = PBXTargetDependency;
2765 target = 31EEABFA156AAF9D00714D05 /* mps */;
2766 targetProxy = 31D60096156D403500337B26 /* PBXContainerItemProxy */;
2767 };
2768 31D6009D156D404B00337B26 /* PBXTargetDependency */ = {
2769 isa = PBXTargetDependency;
2770 target = 31D6008B156D402900337B26 /* steptest */;
2771 targetProxy = 31D6009C156D404B00337B26 /* PBXContainerItemProxy */;
2772 };
2773/* End PBXTargetDependency section */
2774
2775/* Begin XCBuildConfiguration section */
2776 3104AFBA156D357B000A585A /* Debug */ = {
2777 isa = XCBuildConfiguration;
2778 buildSettings = {
2779 PRODUCT_NAME = "$(TARGET_NAME)";
2780 };
2781 name = Debug;
2782 };
2783 3104AFBB156D357B000A585A /* Release */ = {
2784 isa = XCBuildConfiguration;
2785 buildSettings = {
2786 PRODUCT_NAME = "$(TARGET_NAME)";
2787 };
2788 name = Release;
2789 };
2790 3104AFD0156D35E2000A585A /* Debug */ = {
2791 isa = XCBuildConfiguration;
2792 buildSettings = {
2793 PRODUCT_NAME = "$(TARGET_NAME)";
2794 };
2795 name = Debug;
2796 };
2797 3104AFD1156D35E2000A585A /* Release */ = {
2798 isa = XCBuildConfiguration;
2799 buildSettings = {
2800 PRODUCT_NAME = "$(TARGET_NAME)";
2801 };
2802 name = Release;
2803 };
2804 3104AFE5156D3682000A585A /* Debug */ = {
2805 isa = XCBuildConfiguration;
2806 buildSettings = {
2807 PRODUCT_NAME = "$(TARGET_NAME)";
2808 };
2809 name = Debug;
2810 };
2811 3104AFE6156D3682000A585A /* Release */ = {
2812 isa = XCBuildConfiguration;
2813 buildSettings = {
2814 PRODUCT_NAME = "$(TARGET_NAME)";
2815 };
2816 name = Release;
2817 };
2818 3104AFF3156D37A0000A585A /* Debug */ = {
2819 isa = XCBuildConfiguration;
2820 buildSettings = {
2821 PRODUCT_NAME = "$(TARGET_NAME)";
2822 };
2823 name = Debug;
2824 };
2825 3104AFF4156D37A0000A585A /* Release */ = {
2826 isa = XCBuildConfiguration;
2827 buildSettings = {
2828 PRODUCT_NAME = "$(TARGET_NAME)";
2829 };
2830 name = Release;
2831 };
2832 3104B011156D38F3000A585A /* Debug */ = {
2833 isa = XCBuildConfiguration;
2834 buildSettings = {
2835 PRODUCT_NAME = "$(TARGET_NAME)";
2836 };
2837 name = Debug;
2838 };
2839 3104B012156D38F3000A585A /* Release */ = {
2840 isa = XCBuildConfiguration;
2841 buildSettings = {
2842 PRODUCT_NAME = "$(TARGET_NAME)";
2843 };
2844 name = Release;
2845 };
2846 3104B02A156D39D4000A585A /* Debug */ = {
2847 isa = XCBuildConfiguration;
2848 buildSettings = {
2849 PRODUCT_NAME = "$(TARGET_NAME)";
2850 };
2851 name = Debug;
2852 };
2853 3104B02B156D39D4000A585A /* Release */ = {
2854 isa = XCBuildConfiguration;
2855 buildSettings = {
2856 PRODUCT_NAME = "$(TARGET_NAME)";
2857 };
2858 name = Release;
2859 };
2860 3104B045156D3AD8000A585A /* Debug */ = {
2861 isa = XCBuildConfiguration;
2862 buildSettings = {
2863 PRODUCT_NAME = "$(TARGET_NAME)";
2864 };
2865 name = Debug;
2866 };
2867 3104B046156D3AD8000A585A /* Release */ = {
2868 isa = XCBuildConfiguration;
2869 buildSettings = {
2870 PRODUCT_NAME = "$(TARGET_NAME)";
2871 };
2872 name = Release;
2873 };
2874 3114A597156E913C001E0AA3 /* Debug */ = {
2875 isa = XCBuildConfiguration;
2876 buildSettings = {
2877 PRODUCT_NAME = "$(TARGET_NAME)";
2878 };
2879 name = Debug;
2880 };
2881 3114A598156E913C001E0AA3 /* Release */ = {
2882 isa = XCBuildConfiguration;
2883 buildSettings = {
2884 PRODUCT_NAME = "$(TARGET_NAME)";
2885 };
2886 name = Release;
2887 };
2888 3114A5AF156E92C0001E0AA3 /* Debug */ = {
2889 isa = XCBuildConfiguration;
2890 buildSettings = {
2891 PRODUCT_NAME = "$(TARGET_NAME)";
2892 };
2893 name = Debug;
2894 };
2895 3114A5B0156E92C0001E0AA3 /* Release */ = {
2896 isa = XCBuildConfiguration;
2897 buildSettings = {
2898 PRODUCT_NAME = "$(TARGET_NAME)";
2899 };
2900 name = Release;
2901 };
2902 3114A5C5156E9315001E0AA3 /* Debug */ = {
2903 isa = XCBuildConfiguration;
2904 buildSettings = {
2905 PRODUCT_NAME = "$(TARGET_NAME)";
2906 };
2907 name = Debug;
2908 };
2909 3114A5C6156E9315001E0AA3 /* Release */ = {
2910 isa = XCBuildConfiguration;
2911 buildSettings = {
2912 PRODUCT_NAME = "$(TARGET_NAME)";
2913 };
2914 name = Release;
2915 };
2916 3114A5DE156E93A0001E0AA3 /* Debug */ = {
2917 isa = XCBuildConfiguration;
2918 buildSettings = {
2919 PRODUCT_NAME = "$(TARGET_NAME)";
2920 };
2921 name = Debug;
2922 };
2923 3114A5DF156E93A0001E0AA3 /* Release */ = {
2924 isa = XCBuildConfiguration;
2925 buildSettings = {
2926 PRODUCT_NAME = "$(TARGET_NAME)";
2927 };
2928 name = Release;
2929 };
2930 3114A5F7156E93E7001E0AA3 /* Debug */ = {
2931 isa = XCBuildConfiguration;
2932 buildSettings = {
2933 PRODUCT_NAME = "$(TARGET_NAME)";
2934 };
2935 name = Debug;
2936 };
2937 3114A5F8156E93E7001E0AA3 /* Release */ = {
2938 isa = XCBuildConfiguration;
2939 buildSettings = {
2940 PRODUCT_NAME = "$(TARGET_NAME)";
2941 };
2942 name = Release;
2943 };
2944 3114A60D156E9430001E0AA3 /* Debug */ = {
2945 isa = XCBuildConfiguration;
2946 buildSettings = {
2947 PRODUCT_NAME = "$(TARGET_NAME)";
2948 };
2949 name = Debug;
2950 };
2951 3114A60E156E9430001E0AA3 /* Release */ = {
2952 isa = XCBuildConfiguration;
2953 buildSettings = {
2954 PRODUCT_NAME = "$(TARGET_NAME)";
2955 };
2956 name = Release;
2957 };
2958 3114A624156E9485001E0AA3 /* Debug */ = {
2959 isa = XCBuildConfiguration;
2960 buildSettings = {
2961 PRODUCT_NAME = "$(TARGET_NAME)";
2962 };
2963 name = Debug;
2964 };
2965 3114A625156E9485001E0AA3 /* Release */ = {
2966 isa = XCBuildConfiguration;
2967 buildSettings = {
2968 PRODUCT_NAME = "$(TARGET_NAME)";
2969 };
2970 name = Release;
2971 };
2972 3114A63B156E94DB001E0AA3 /* Debug */ = {
2973 isa = XCBuildConfiguration;
2974 buildSettings = {
2975 PRODUCT_NAME = "$(TARGET_NAME)";
2976 };
2977 name = Debug;
2978 };
2979 3114A63C156E94DB001E0AA3 /* Release */ = {
2980 isa = XCBuildConfiguration;
2981 buildSettings = {
2982 PRODUCT_NAME = "$(TARGET_NAME)";
2983 };
2984 name = Release;
2985 };
2986 3114A654156E9596001E0AA3 /* Debug */ = {
2987 isa = XCBuildConfiguration;
2988 buildSettings = {
2989 PRODUCT_NAME = "$(TARGET_NAME)";
2990 };
2991 name = Debug;
2992 };
2993 3114A655156E9596001E0AA3 /* Release */ = {
2994 isa = XCBuildConfiguration;
2995 buildSettings = {
2996 PRODUCT_NAME = "$(TARGET_NAME)";
2997 };
2998 name = Release;
2999 };
3000 3114A66A156E95D9001E0AA3 /* Debug */ = {
3001 isa = XCBuildConfiguration;
3002 buildSettings = {
3003 PRODUCT_NAME = "$(TARGET_NAME)";
3004 };
3005 name = Debug;
3006 };
3007 3114A66B156E95D9001E0AA3 /* Release */ = {
3008 isa = XCBuildConfiguration;
3009 buildSettings = {
3010 PRODUCT_NAME = "$(TARGET_NAME)";
3011 };
3012 name = Release;
3013 };
3014 3114A684156E9669001E0AA3 /* Debug */ = {
3015 isa = XCBuildConfiguration;
3016 buildSettings = {
3017 PRODUCT_NAME = "$(TARGET_NAME)";
3018 };
3019 name = Debug;
3020 };
3021 3114A685156E9669001E0AA3 /* Release */ = {
3022 isa = XCBuildConfiguration;
3023 buildSettings = {
3024 PRODUCT_NAME = "$(TARGET_NAME)";
3025 };
3026 name = Release;
3027 };
3028 3114A69D156E971B001E0AA3 /* Debug */ = {
3029 isa = XCBuildConfiguration;
3030 buildSettings = {
3031 PRODUCT_NAME = "$(TARGET_NAME)";
3032 };
3033 name = Debug;
3034 };
3035 3114A69E156E971B001E0AA3 /* Release */ = {
3036 isa = XCBuildConfiguration;
3037 buildSettings = {
3038 PRODUCT_NAME = "$(TARGET_NAME)";
3039 };
3040 name = Release;
3041 };
3042 3114A6B4156E9759001E0AA3 /* Debug */ = {
3043 isa = XCBuildConfiguration;
3044 buildSettings = {
3045 PRODUCT_NAME = "$(TARGET_NAME)";
3046 };
3047 name = Debug;
3048 };
3049 3114A6B5156E9759001E0AA3 /* Release */ = {
3050 isa = XCBuildConfiguration;
3051 buildSettings = {
3052 PRODUCT_NAME = "$(TARGET_NAME)";
3053 };
3054 name = Release;
3055 };
3056 3114A6CE156E9815001E0AA3 /* Debug */ = {
3057 isa = XCBuildConfiguration;
3058 buildSettings = {
3059 PRODUCT_NAME = "$(TARGET_NAME)";
3060 };
3061 name = Debug;
3062 };
3063 3114A6CF156E9815001E0AA3 /* Release */ = {
3064 isa = XCBuildConfiguration;
3065 buildSettings = {
3066 PRODUCT_NAME = "$(TARGET_NAME)";
3067 };
3068 name = Release;
3069 };
3070 3124CAC0156BE3EC00753214 /* Debug */ = {
3071 isa = XCBuildConfiguration;
3072 buildSettings = {
3073 PRODUCT_NAME = "$(TARGET_NAME)";
3074 };
3075 name = Debug;
3076 };
3077 3124CAC1156BE3EC00753214 /* Release */ = {
3078 isa = XCBuildConfiguration;
3079 buildSettings = {
3080 PRODUCT_NAME = "$(TARGET_NAME)";
3081 };
3082 name = Release;
3083 };
3084 3124CADC156BE64A00753214 /* Debug */ = {
3085 isa = XCBuildConfiguration;
3086 buildSettings = {
3087 PRODUCT_NAME = "$(TARGET_NAME)";
3088 };
3089 name = Debug;
3090 };
3091 3124CADD156BE64A00753214 /* Release */ = {
3092 isa = XCBuildConfiguration;
3093 buildSettings = {
3094 PRODUCT_NAME = "$(TARGET_NAME)";
3095 };
3096 name = Release;
3097 };
3098 3124CAF3156BE7F300753214 /* Debug */ = {
3099 isa = XCBuildConfiguration;
3100 buildSettings = {
3101 PRODUCT_NAME = "$(TARGET_NAME)";
3102 };
3103 name = Debug;
3104 };
3105 3124CAF4156BE7F300753214 /* Release */ = {
3106 isa = XCBuildConfiguration;
3107 buildSettings = {
3108 PRODUCT_NAME = "$(TARGET_NAME)";
3109 };
3110 name = Release;
3111 };
3112 31D60015156D3CB200337B26 /* Debug */ = {
3113 isa = XCBuildConfiguration;
3114 buildSettings = {
3115 PRODUCT_NAME = "$(TARGET_NAME)";
3116 };
3117 name = Debug;
3118 };
3119 31D60016156D3CB200337B26 /* Release */ = {
3120 isa = XCBuildConfiguration;
3121 buildSettings = {
3122 PRODUCT_NAME = "$(TARGET_NAME)";
3123 };
3124 name = Release;
3125 };
3126 31D6002F156D3D3F00337B26 /* Debug */ = {
3127 isa = XCBuildConfiguration;
3128 buildSettings = {
3129 PRODUCT_NAME = "$(TARGET_NAME)";
3130 };
3131 name = Debug;
3132 };
3133 31D60030156D3D3F00337B26 /* Release */ = {
3134 isa = XCBuildConfiguration;
3135 buildSettings = {
3136 PRODUCT_NAME = "$(TARGET_NAME)";
3137 };
3138 name = Release;
3139 };
3140 31D60046156D3EC700337B26 /* Debug */ = {
3141 isa = XCBuildConfiguration;
3142 buildSettings = {
3143 PRODUCT_NAME = "$(TARGET_NAME)";
3144 };
3145 name = Debug;
3146 };
3147 31D60047156D3EC700337B26 /* Release */ = {
3148 isa = XCBuildConfiguration;
3149 buildSettings = {
3150 PRODUCT_NAME = "$(TARGET_NAME)";
3151 };
3152 name = Release;
3153 };
3154 31D6005C156D3F3500337B26 /* Debug */ = {
3155 isa = XCBuildConfiguration;
3156 buildSettings = {
3157 PRODUCT_NAME = "$(TARGET_NAME)";
3158 };
3159 name = Debug;
3160 };
3161 31D6005D156D3F3500337B26 /* Release */ = {
3162 isa = XCBuildConfiguration;
3163 buildSettings = {
3164 PRODUCT_NAME = "$(TARGET_NAME)";
3165 };
3166 name = Release;
3167 };
3168 31D60079156D3FBC00337B26 /* Debug */ = {
3169 isa = XCBuildConfiguration;
3170 buildSettings = {
3171 PRODUCT_NAME = "$(TARGET_NAME)";
3172 };
3173 name = Debug;
3174 };
3175 31D6007A156D3FBC00337B26 /* Release */ = {
3176 isa = XCBuildConfiguration;
3177 buildSettings = {
3178 PRODUCT_NAME = "$(TARGET_NAME)";
3179 };
3180 name = Release;
3181 };
3182 31D60094156D402900337B26 /* Debug */ = {
3183 isa = XCBuildConfiguration;
3184 buildSettings = {
3185 PRODUCT_NAME = "$(TARGET_NAME)";
3186 };
3187 name = Debug;
3188 };
3189 31D60095156D402900337B26 /* Release */ = {
3190 isa = XCBuildConfiguration;
3191 buildSettings = {
3192 PRODUCT_NAME = "$(TARGET_NAME)";
3193 };
3194 name = Release;
3195 };
3196 31EEABDF156AAE9E00714D05 /* Debug */ = {
3197 isa = XCBuildConfiguration;
3198 buildSettings = {
3199 ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
3200 CLANG_WARN_IMPLICIT_SIGN_CONVERSION = YES;
3201 CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
3202 COPY_PHASE_STRIP = NO;
3203 GCC_C_LANGUAGE_STANDARD = ansi;
3204 GCC_OPTIMIZATION_LEVEL = 0;
3205 GCC_PREPROCESSOR_DEFINITIONS = (
3206 CONFIG_PF_XCI6LL,
3207 CONFIG_PROD_MPS,
3208 CONFIG_VAR_CI,
3209 );
3210 GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
3211 GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
3212 GCC_TREAT_WARNINGS_AS_ERRORS = NO;
3213 GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
3214 GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
3215 GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO;
3216 GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;
3217 GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
3218 GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
3219 GCC_WARN_ABOUT_RETURN_TYPE = YES;
3220 GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
3221 GCC_WARN_PEDANTIC = YES;
3222 GCC_WARN_SHADOW = YES;
3223 GCC_WARN_SIGN_COMPARE = YES;
3224 GCC_WARN_UNINITIALIZED_AUTOS = YES;
3225 GCC_WARN_UNKNOWN_PRAGMAS = YES;
3226 GCC_WARN_UNUSED_FUNCTION = YES;
3227 GCC_WARN_UNUSED_LABEL = YES;
3228 GCC_WARN_UNUSED_PARAMETER = YES;
3229 GCC_WARN_UNUSED_VARIABLE = YES;
3230 ONLY_ACTIVE_ARCH = YES;
3231 OTHER_CFLAGS = (
3232 "-pedantic",
3233 "-Wall",
3234 "-Wno-extended-offsetof",
3235 );
3236 SDKROOT = macosx;
3237 WARNING_CFLAGS = (
3238 "-pedantic",
3239 "-Wpointer-arith",
3240 "-Wstrict-prototypes",
3241 "-Wmissing-prototypes",
3242 "-Winline",
3243 "-Waggregate-return",
3244 "-Wnested-externs",
3245 "-Wcast-qual",
3246 "-Wshadow",
3247 "-Wall",
3248 "-Wno-extended-offsetof",
3249 );
3250 };
3251 name = Debug;
3252 };
3253 31EEABE0156AAE9E00714D05 /* Release */ = {
3254 isa = XCBuildConfiguration;
3255 buildSettings = {
3256 ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
3257 CLANG_WARN_IMPLICIT_SIGN_CONVERSION = YES;
3258 CLANG_WARN_SUSPICIOUS_IMPLICIT_CONVERSION = YES;
3259 DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
3260 GCC_C_LANGUAGE_STANDARD = ansi;
3261 GCC_PREPROCESSOR_DEFINITIONS = (
3262 CONFIG_PF_XCI6LL,
3263 CONFIG_PROD_MPS,
3264 CONFIG_VAR_HE,
3265 NDEBUG,
3266 );
3267 GCC_TREAT_IMPLICIT_FUNCTION_DECLARATIONS_AS_ERRORS = YES;
3268 GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
3269 GCC_TREAT_WARNINGS_AS_ERRORS = NO;
3270 GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
3271 GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
3272 GCC_WARN_ABOUT_INVALID_OFFSETOF_MACRO = NO;
3273 GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES;
3274 GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
3275 GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
3276 GCC_WARN_ABOUT_RETURN_TYPE = YES;
3277 GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
3278 GCC_WARN_PEDANTIC = YES;
3279 GCC_WARN_SHADOW = YES;
3280 GCC_WARN_SIGN_COMPARE = YES;
3281 GCC_WARN_UNINITIALIZED_AUTOS = YES;
3282 GCC_WARN_UNKNOWN_PRAGMAS = YES;
3283 GCC_WARN_UNUSED_FUNCTION = YES;
3284 GCC_WARN_UNUSED_LABEL = YES;
3285 GCC_WARN_UNUSED_PARAMETER = YES;
3286 GCC_WARN_UNUSED_VARIABLE = YES;
3287 OTHER_CFLAGS = (
3288 "-pedantic",
3289 "-Wall",
3290 "-Wno-extended-offsetof",
3291 );
3292 SDKROOT = macosx;
3293 WARNING_CFLAGS = (
3294 "-pedantic",
3295 "-Wpointer-arith",
3296 "-Wstrict-prototypes",
3297 "-Wmissing-prototypes",
3298 "-Winline",
3299 "-Waggregate-return",
3300 "-Wnested-externs",
3301 "-Wcast-qual",
3302 "-Wshadow",
3303 "-Wall",
3304 "-Wno-extended-offsetof",
3305 );
3306 };
3307 name = Release;
3308 };
3309 31EEABFD156AAF9D00714D05 /* Debug */ = {
3310 isa = XCBuildConfiguration;
3311 buildSettings = {
3312 ALWAYS_SEARCH_USER_PATHS = NO;
3313 EXECUTABLE_PREFIX = lib;
3314 PRODUCT_NAME = "$(TARGET_NAME)";
3315 };
3316 name = Debug;
3317 };
3318 31EEABFE156AAF9D00714D05 /* Release */ = {
3319 isa = XCBuildConfiguration;
3320 buildSettings = {
3321 ALWAYS_SEARCH_USER_PATHS = NO;
3322 EXECUTABLE_PREFIX = lib;
3323 PRODUCT_NAME = "$(TARGET_NAME)";
3324 };
3325 name = Release;
3326 };
3327 31EEAC6D156AB52600714D05 /* Debug */ = {
3328 isa = XCBuildConfiguration;
3329 buildSettings = {
3330 PRODUCT_NAME = "$(TARGET_NAME)";
3331 };
3332 name = Debug;
3333 };
3334 31EEAC6E156AB52600714D05 /* Release */ = {
3335 isa = XCBuildConfiguration;
3336 buildSettings = {
3337 PRODUCT_NAME = "$(TARGET_NAME)";
3338 };
3339 name = Release;
3340 };
3341/* End XCBuildConfiguration section */
3342
3343/* Begin XCConfigurationList section */
3344 3104AFBC156D357B000A585A /* Build configuration list for PBXNativeTarget "apss" */ = {
3345 isa = XCConfigurationList;
3346 buildConfigurations = (
3347 3104AFBA156D357B000A585A /* Debug */,
3348 3104AFBB156D357B000A585A /* Release */,
3349 );
3350 defaultConfigurationIsVisible = 0;
3351 defaultConfigurationName = Release;
3352 };
3353 3104AFCF156D35E2000A585A /* Build configuration list for PBXNativeTarget "sacss" */ = {
3354 isa = XCConfigurationList;
3355 buildConfigurations = (
3356 3104AFD0156D35E2000A585A /* Debug */,
3357 3104AFD1156D35E2000A585A /* Release */,
3358 );
3359 defaultConfigurationIsVisible = 0;
3360 defaultConfigurationName = Release;
3361 };
3362 3104AFE4156D3682000A585A /* Build configuration list for PBXNativeTarget "amcsshe" */ = {
3363 isa = XCConfigurationList;
3364 buildConfigurations = (
3365 3104AFE5156D3682000A585A /* Debug */,
3366 3104AFE6156D3682000A585A /* Release */,
3367 );
3368 defaultConfigurationIsVisible = 0;
3369 defaultConfigurationName = Release;
3370 };
3371 3104AFF2156D37A0000A585A /* Build configuration list for PBXAggregateTarget "all" */ = {
3372 isa = XCConfigurationList;
3373 buildConfigurations = (
3374 3104AFF3156D37A0000A585A /* Debug */,
3375 3104AFF4156D37A0000A585A /* Release */,
3376 );
3377 defaultConfigurationIsVisible = 0;
3378 defaultConfigurationName = Release;
3379 };
3380 3104B010156D38F3000A585A /* Build configuration list for PBXNativeTarget "amsss" */ = {
3381 isa = XCConfigurationList;
3382 buildConfigurations = (
3383 3104B011156D38F3000A585A /* Debug */,
3384 3104B012156D38F3000A585A /* Release */,
3385 );
3386 defaultConfigurationIsVisible = 0;
3387 defaultConfigurationName = Release;
3388 };
3389 3104B029156D39D4000A585A /* Build configuration list for PBXNativeTarget "amssshe" */ = {
3390 isa = XCConfigurationList;
3391 buildConfigurations = (
3392 3104B02A156D39D4000A585A /* Debug */,
3393 3104B02B156D39D4000A585A /* Release */,
3394 );
3395 defaultConfigurationIsVisible = 0;
3396 defaultConfigurationName = Release;
3397 };
3398 3104B044156D3AD8000A585A /* Build configuration list for PBXNativeTarget "segsmss" */ = {
3399 isa = XCConfigurationList;
3400 buildConfigurations = (
3401 3104B045156D3AD8000A585A /* Debug */,
3402 3104B046156D3AD8000A585A /* Release */,
3403 );
3404 defaultConfigurationIsVisible = 0;
3405 defaultConfigurationName = Release;
3406 };
3407 3114A599156E913C001E0AA3 /* Build configuration list for PBXNativeTarget "locv" */ = {
3408 isa = XCConfigurationList;
3409 buildConfigurations = (
3410 3114A597156E913C001E0AA3 /* Debug */,
3411 3114A598156E913C001E0AA3 /* Release */,
3412 );
3413 defaultConfigurationIsVisible = 0;
3414 defaultConfigurationName = Release;
3415 };
3416 3114A5AE156E92C0001E0AA3 /* Build configuration list for PBXNativeTarget "qs" */ = {
3417 isa = XCConfigurationList;
3418 buildConfigurations = (
3419 3114A5AF156E92C0001E0AA3 /* Debug */,
3420 3114A5B0156E92C0001E0AA3 /* Release */,
3421 );
3422 defaultConfigurationIsVisible = 0;
3423 defaultConfigurationName = Release;
3424 };
3425 3114A5C4156E9315001E0AA3 /* Build configuration list for PBXNativeTarget "finalcv" */ = {
3426 isa = XCConfigurationList;
3427 buildConfigurations = (
3428 3114A5C5156E9315001E0AA3 /* Debug */,
3429 3114A5C6156E9315001E0AA3 /* Release */,
3430 );
3431 defaultConfigurationIsVisible = 0;
3432 defaultConfigurationName = Release;
3433 };
3434 3114A5DD156E93A0001E0AA3 /* Build configuration list for PBXNativeTarget "finaltest" */ = {
3435 isa = XCConfigurationList;
3436 buildConfigurations = (
3437 3114A5DE156E93A0001E0AA3 /* Debug */,
3438 3114A5DF156E93A0001E0AA3 /* Release */,
3439 );
3440 defaultConfigurationIsVisible = 0;
3441 defaultConfigurationName = Release;
3442 };
3443 3114A5F6156E93E7001E0AA3 /* Build configuration list for PBXNativeTarget "arenacv" */ = {
3444 isa = XCConfigurationList;
3445 buildConfigurations = (
3446 3114A5F7156E93E7001E0AA3 /* Debug */,
3447 3114A5F8156E93E7001E0AA3 /* Release */,
3448 );
3449 defaultConfigurationIsVisible = 0;
3450 defaultConfigurationName = Release;
3451 };
3452 3114A60C156E9430001E0AA3 /* Build configuration list for PBXNativeTarget "bttest" */ = {
3453 isa = XCConfigurationList;
3454 buildConfigurations = (
3455 3114A60D156E9430001E0AA3 /* Debug */,
3456 3114A60E156E9430001E0AA3 /* Release */,
3457 );
3458 defaultConfigurationIsVisible = 0;
3459 defaultConfigurationName = Release;
3460 };
3461 3114A623156E9485001E0AA3 /* Build configuration list for PBXNativeTarget "teletest" */ = {
3462 isa = XCConfigurationList;
3463 buildConfigurations = (
3464 3114A624156E9485001E0AA3 /* Debug */,
3465 3114A625156E9485001E0AA3 /* Release */,
3466 );
3467 defaultConfigurationIsVisible = 0;
3468 defaultConfigurationName = Release;
3469 };
3470 3114A63A156E94DB001E0AA3 /* Build configuration list for PBXNativeTarget "abqtest" */ = {
3471 isa = XCConfigurationList;
3472 buildConfigurations = (
3473 3114A63B156E94DB001E0AA3 /* Debug */,
3474 3114A63C156E94DB001E0AA3 /* Release */,
3475 );
3476 defaultConfigurationIsVisible = 0;
3477 defaultConfigurationName = Release;
3478 };
3479 3114A653156E9596001E0AA3 /* Build configuration list for PBXNativeTarget "cbstest" */ = {
3480 isa = XCConfigurationList;
3481 buildConfigurations = (
3482 3114A654156E9596001E0AA3 /* Debug */,
3483 3114A655156E9596001E0AA3 /* Release */,
3484 );
3485 defaultConfigurationIsVisible = 0;
3486 defaultConfigurationName = Release;
3487 };
3488 3114A669156E95D9001E0AA3 /* Build configuration list for PBXNativeTarget "btcv" */ = {
3489 isa = XCConfigurationList;
3490 buildConfigurations = (
3491 3114A66A156E95D9001E0AA3 /* Debug */,
3492 3114A66B156E95D9001E0AA3 /* Release */,
3493 );
3494 defaultConfigurationIsVisible = 0;
3495 defaultConfigurationName = Release;
3496 };
3497 3114A683156E9669001E0AA3 /* Build configuration list for PBXNativeTarget "mv2test" */ = {
3498 isa = XCConfigurationList;
3499 buildConfigurations = (
3500 3114A684156E9669001E0AA3 /* Debug */,
3501 3114A685156E9669001E0AA3 /* Release */,
3502 );
3503 defaultConfigurationIsVisible = 0;
3504 defaultConfigurationName = Release;
3505 };
3506 3114A69C156E971B001E0AA3 /* Build configuration list for PBXNativeTarget "messtest" */ = {
3507 isa = XCConfigurationList;
3508 buildConfigurations = (
3509 3114A69D156E971B001E0AA3 /* Debug */,
3510 3114A69E156E971B001E0AA3 /* Release */,
3511 );
3512 defaultConfigurationIsVisible = 0;
3513 defaultConfigurationName = Release;
3514 };
3515 3114A6B3156E9759001E0AA3 /* Build configuration list for PBXNativeTarget "walkt0" */ = {
3516 isa = XCConfigurationList;
3517 buildConfigurations = (
3518 3114A6B4156E9759001E0AA3 /* Debug */,
3519 3114A6B5156E9759001E0AA3 /* Release */,
3520 );
3521 defaultConfigurationIsVisible = 0;
3522 defaultConfigurationName = Release;
3523 };
3524 3114A6CD156E9815001E0AA3 /* Build configuration list for PBXNativeTarget "eventcnv" */ = {
3525 isa = XCConfigurationList;
3526 buildConfigurations = (
3527 3114A6CE156E9815001E0AA3 /* Debug */,
3528 3114A6CF156E9815001E0AA3 /* Release */,
3529 );
3530 defaultConfigurationIsVisible = 0;
3531 defaultConfigurationName = Release;
3532 };
3533 3124CABF156BE3EC00753214 /* Build configuration list for PBXNativeTarget "awlut" */ = {
3534 isa = XCConfigurationList;
3535 buildConfigurations = (
3536 3124CAC0156BE3EC00753214 /* Debug */,
3537 3124CAC1156BE3EC00753214 /* Release */,
3538 );
3539 defaultConfigurationIsVisible = 0;
3540 defaultConfigurationName = Release;
3541 };
3542 3124CADB156BE64A00753214 /* Build configuration list for PBXNativeTarget "mpsicv" */ = {
3543 isa = XCConfigurationList;
3544 buildConfigurations = (
3545 3124CADC156BE64A00753214 /* Debug */,
3546 3124CADD156BE64A00753214 /* Release */,
3547 );
3548 defaultConfigurationIsVisible = 0;
3549 defaultConfigurationName = Release;
3550 };
3551 3124CAF2156BE7F300753214 /* Build configuration list for PBXNativeTarget "amcss" */ = {
3552 isa = XCConfigurationList;
3553 buildConfigurations = (
3554 3124CAF3156BE7F300753214 /* Debug */,
3555 3124CAF4156BE7F300753214 /* Release */,
3556 );
3557 defaultConfigurationIsVisible = 0;
3558 defaultConfigurationName = Release;
3559 };
3560 31D60014156D3CB200337B26 /* Build configuration list for PBXNativeTarget "awluthe" */ = {
3561 isa = XCConfigurationList;
3562 buildConfigurations = (
3563 31D60015156D3CB200337B26 /* Debug */,
3564 31D60016156D3CB200337B26 /* Release */,
3565 );
3566 defaultConfigurationIsVisible = 0;
3567 defaultConfigurationName = Release;
3568 };
3569 31D6002E156D3D3F00337B26 /* Build configuration list for PBXNativeTarget "lockcov" */ = {
3570 isa = XCConfigurationList;
3571 buildConfigurations = (
3572 31D6002F156D3D3F00337B26 /* Debug */,
3573 31D60030156D3D3F00337B26 /* Release */,
3574 );
3575 defaultConfigurationIsVisible = 0;
3576 defaultConfigurationName = Release;
3577 };
3578 31D60045156D3EC700337B26 /* Build configuration list for PBXNativeTarget "poolncv" */ = {
3579 isa = XCConfigurationList;
3580 buildConfigurations = (
3581 31D60046156D3EC700337B26 /* Debug */,
3582 31D60047156D3EC700337B26 /* Release */,
3583 );
3584 defaultConfigurationIsVisible = 0;
3585 defaultConfigurationName = Release;
3586 };
3587 31D6005B156D3F3500337B26 /* Build configuration list for PBXNativeTarget "zcoll" */ = {
3588 isa = XCConfigurationList;
3589 buildConfigurations = (
3590 31D6005C156D3F3500337B26 /* Debug */,
3591 31D6005D156D3F3500337B26 /* Release */,
3592 );
3593 defaultConfigurationIsVisible = 0;
3594 defaultConfigurationName = Release;
3595 };
3596 31D60078156D3FBC00337B26 /* Build configuration list for PBXNativeTarget "zmess" */ = {
3597 isa = XCConfigurationList;
3598 buildConfigurations = (
3599 31D60079156D3FBC00337B26 /* Debug */,
3600 31D6007A156D3FBC00337B26 /* Release */,
3601 );
3602 defaultConfigurationIsVisible = 0;
3603 defaultConfigurationName = Release;
3604 };
3605 31D60093156D402900337B26 /* Build configuration list for PBXNativeTarget "steptest" */ = {
3606 isa = XCConfigurationList;
3607 buildConfigurations = (
3608 31D60094156D402900337B26 /* Debug */,
3609 31D60095156D402900337B26 /* Release */,
3610 );
3611 defaultConfigurationIsVisible = 0;
3612 defaultConfigurationName = Release;
3613 };
3614 31EEABDD156AAE9E00714D05 /* Build configuration list for PBXProject "mps" */ = {
3615 isa = XCConfigurationList;
3616 buildConfigurations = (
3617 31EEABDF156AAE9E00714D05 /* Debug */,
3618 31EEABE0156AAE9E00714D05 /* Release */,
3619 );
3620 defaultConfigurationIsVisible = 0;
3621 defaultConfigurationName = Release;
3622 };
3623 31EEABFC156AAF9D00714D05 /* Build configuration list for PBXNativeTarget "mps" */ = {
3624 isa = XCConfigurationList;
3625 buildConfigurations = (
3626 31EEABFD156AAF9D00714D05 /* Debug */,
3627 31EEABFE156AAF9D00714D05 /* Release */,
3628 );
3629 defaultConfigurationIsVisible = 0;
3630 defaultConfigurationName = Release;
3631 };
3632 31EEAC6C156AB52600714D05 /* Build configuration list for PBXNativeTarget "mpmss" */ = {
3633 isa = XCConfigurationList;
3634 buildConfigurations = (
3635 31EEAC6D156AB52600714D05 /* Debug */,
3636 31EEAC6E156AB52600714D05 /* Release */,
3637 );
3638 defaultConfigurationIsVisible = 0;
3639 defaultConfigurationName = Release;
3640 };
3641/* End XCConfigurationList section */
3642 };
3643 rootObject = 31EEABDA156AAE9E00714D05 /* Project object */;
3644}
diff --git a/mps/code/mpstd.h b/mps/code/mpstd.h
index b71da925752..4a8a0875ca3 100644
--- a/mps/code/mpstd.h
+++ b/mps/code/mpstd.h
@@ -285,10 +285,12 @@
285/* GCC 4.0.1 (As supplied by Apple on Mac OS X 10.4.8 on an Intel Mac), 285/* GCC 4.0.1 (As supplied by Apple on Mac OS X 10.4.8 on an Intel Mac),
286 * gcc -E -dM 286 * gcc -E -dM
287 * And above for xcppgc. 287 * And above for xcppgc.
288 * Note that Clang also defines __GNUC__ since it's generally GCC compatible,
289 * but that doesn't fit our system so we exclude Clang here.
288 */ 290 */
289 291
290#elif defined(__APPLE__) && defined(__i386__) && defined(__MACH__) \ 292#elif defined(__APPLE__) && defined(__i386__) && defined(__MACH__) \
291 && defined(__GNUC__) 293 && defined(__GNUC__) && !defined(__clang__)
292#if defined(CONFIG_PF_STRING) && ! defined(CONFIG_PF_XCI3GC) 294#if defined(CONFIG_PF_STRING) && ! defined(CONFIG_PF_XCI3GC)
293#error "specified CONFIG_PF_... inconsistent with detected xci3gc" 295#error "specified CONFIG_PF_... inconsistent with detected xci3gc"
294#endif 296#endif
@@ -303,6 +305,42 @@
303#define MPS_WORD_SHIFT 5 305#define MPS_WORD_SHIFT 5
304#define MPS_PF_ALIGN 4 /* I'm just guessing. */ 306#define MPS_PF_ALIGN 4 /* I'm just guessing. */
305 307
308/* Apple clang version 3.1, clang -E -dM */
309
310#elif defined(__APPLE__) && defined(__i386__) && defined(__MACH__) \
311 && defined(__clang__)
312#if defined(CONFIG_PF_STRING) && ! defined(CONFIG_PF_XCI3LL)
313#error "specified CONFIG_PF_... inconsistent with detected xci3ll"
314#endif
315#define MPS_PF_XCI3LL
316#define MPS_PF_STRING "xci3ll"
317#define MPS_OS_XC
318#define MPS_ARCH_I3
319#define MPS_BUILD_LL
320#define MPS_T_WORD unsigned long
321#define MPS_T_ULONGEST unsigned long
322#define MPS_WORD_WIDTH 32
323#define MPS_WORD_SHIFT 5
324#define MPS_PF_ALIGN 4 /* I'm just guessing. */
325
326/* Apple clang version 3.1, clang -E -dM */
327
328#elif defined(__APPLE__) && defined(__x86_64__) && defined(__MACH__) \
329 && defined(__clang__)
330#if defined(CONFIG_PF_STRING) && ! defined(CONFIG_PF_XCI6LL)
331#error "specified CONFIG_PF_... inconsistent with detected xci6ll"
332#endif
333#define MPS_PF_XCI6LL
334#define MPS_PF_STRING "xci6ll"
335#define MPS_OS_XC
336#define MPS_ARCH_I6
337#define MPS_BUILD_LL
338#define MPS_T_WORD unsigned long
339#define MPS_T_ULONGEST unsigned long
340#define MPS_WORD_WIDTH 64
341#define MPS_WORD_SHIFT 6
342#define MPS_PF_ALIGN 8
343
306/* GCC 2.5.8, gcc -E -dM, (__SVR4 indicates Solaris) */ 344/* GCC 2.5.8, gcc -E -dM, (__SVR4 indicates Solaris) */
307 345
308#elif defined(__sun__) && defined(__sparc__) && defined(__GNUC__) \ 346#elif defined(__sun__) && defined(__sparc__) && defined(__GNUC__) \
diff --git a/mps/code/shield.c b/mps/code/shield.c
index d27cbcee529..dc41ba8fb59 100644
--- a/mps/code/shield.c
+++ b/mps/code/shield.c
@@ -113,7 +113,7 @@ static void protLower(Arena arena, Seg seg, AccessSet mode)
113} 113}
114 114
115 115
116static void sync(Arena arena, Seg seg) 116static void shieldSync(Arena arena, Seg seg)
117{ 117{
118 AVERT(Arena, arena); 118 AVERT(Arena, arena);
119 AVERT(Seg, seg); 119 AVERT(Seg, seg);
@@ -142,7 +142,7 @@ static void flush(Arena arena, Size i)
142 SegSetDepth(seg, SegDepth(seg) - 1); 142 SegSetDepth(seg, SegDepth(seg) - 1);
143 143
144 if (SegDepth(seg) == 0) 144 if (SegDepth(seg) == 0)
145 sync(arena, seg); 145 shieldSync(arena, seg);
146 146
147 arena->shCache[i] = NULL; 147 arena->shCache[i] = NULL;
148} 148}
@@ -163,7 +163,7 @@ static void cache(Arena arena, Seg seg)
163 return; 163 return;
164 } 164 }
165 if (ShieldCacheSIZE == 0 || !arena->suspended) 165 if (ShieldCacheSIZE == 0 || !arena->suspended)
166 sync(arena, seg); 166 shieldSync(arena, seg);
167 else { 167 else {
168 SegSetDepth(seg, SegDepth(seg) + 1); 168 SegSetDepth(seg, SegDepth(seg) + 1);
169 ++arena->shDepth; 169 ++arena->shDepth;
diff --git a/mps/code/ssixi6.c b/mps/code/ssixi6.c
new file mode 100644
index 00000000000..6732f850b3b
--- /dev/null
+++ b/mps/code/ssixi6.c
@@ -0,0 +1,111 @@
1/* ssixi6.c: UNIX/INTEL STACK SCANNING
2 *
3 * $Id$
4 * Copyright (c) 2001 Ravenbrook Limited. See end of file for license.
5 *
6 * This scans the stack and fixes the registers which may contain
7 * roots. See <design/thread-manager/>
8 *
9 * This code was branched from ssixi3.c (32-bit Intel) initially for the
10 * port to W3I6LL (Mac OS X on x86_64 with Clang).
11 *
12 * This code is common to more than one Unix implementation on
13 * Intel hardware (but is not portable Unix code). According to Wikipedia,
14 * all the non-Windows platforms use the System V AMD64 ABI. See
15 * .sources.callees.saves.
16 *
17 * SOURCES
18 *
19 * .sources.callees.saves:
20 * "Registers %rbp, %rbx and %r12 through %r15 "belong" to the calling
21 * function and the called function is required to preserve their values.
22 * In other words, a called function must preserve these registers’ values
23 * for its caller." -- System V AMD64 ABI
24 * <http://x86-64.org/documentation/abi.pdf>
25 *
26 * ASSUMPTIONS
27 *
28 * .assume.align: The stack pointer is assumed to be aligned on a word
29 * boundary.
30 *
31 * .assume.asm.stack: The compiler must not do wacky things with the
32 * stack pointer around a call since we need to ensure that the
33 * callee-save regs are visible during TraceScanArea.
34 *
35 * .assume.asm.order: The volatile modifier should prevent movement
36 * of code, which might break .assume.asm.stack.
37 *
38 */
39
40
41#include "mpm.h"
42
43SRCID(ssixi6, "$Id$");
44
45
46/* .assume.asm.order */
47#define ASMV(x) __asm__ volatile (x)
48
49
50Res StackScan(ScanState ss, Addr *stackBot)
51{
52 Addr *stackTop;
53 Res res;
54
55 ASMV("push %rbp");
56 ASMV("push %rbx");
57 ASMV("push %r12");
58 ASMV("push %r13");
59 ASMV("push %r14");
60 ASMV("push %r15");
61 ASMV("mov %%rsp, %0" : "=r" (stackTop) :); /* stackTop = esp */
62
63 AVER(AddrIsAligned((Addr)stackTop, sizeof(Addr))); /* .assume.align */
64 res = TraceScanArea(ss, stackTop, stackBot);
65
66 ASMV("add $48, %rsp"); /* pop 6 regs to restore the stack pointer */
67
68 return res;
69}
70
71
72/* C. COPYRIGHT AND LICENSE
73 *
74 * Copyright (C) 2001-2002 Ravenbrook Limited <http://www.ravenbrook.com/>.
75 * All rights reserved. This is an open source license. Contact
76 * Ravenbrook for commercial licensing options.
77 *
78 * Redistribution and use in source and binary forms, with or without
79 * modification, are permitted provided that the following conditions are
80 * met:
81 *
82 * 1. Redistributions of source code must retain the above copyright
83 * notice, this list of conditions and the following disclaimer.
84 *
85 * 2. Redistributions in binary form must reproduce the above copyright
86 * notice, this list of conditions and the following disclaimer in the
87 * documentation and/or other materials provided with the distribution.
88 *
89 * 3. Redistributions in any form must be accompanied by information on how
90 * to obtain complete source code for this software and any accompanying
91 * software that uses this software. The source code must either be
92 * included in the distribution or be available for no more than the cost
93 * of distribution plus a nominal fee, and must be freely redistributable
94 * under reasonable conditions. For an executable file, complete source
95 * code means the source code for all modules it contains. It does not
96 * include source code for modules or files that typically accompany the
97 * major components of the operating system on which the executable file
98 * runs.
99 *
100 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
101 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
102 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
103 * PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE
104 * COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
105 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
106 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
107 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
108 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
109 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
110 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
111 */