diff options
| author | Gareth Rees | 2013-02-05 15:43:41 +0000 |
|---|---|---|
| committer | Gareth Rees | 2013-02-05 15:43:41 +0000 |
| commit | bc4ccedc13f5ada5ca03690ceb7bbbc663b3f9fb (patch) | |
| tree | 38f19673d5db4c04fc65d2b2e6e89e2ae99e4168 /mps/code | |
| parent | 2ffce9476ea8f7e2cb9a135afbf608f4ed648c21 (diff) | |
| download | emacs-bc4ccedc13f5ada5ca03690ceb7bbbc663b3f9fb.tar.gz emacs-bc4ccedc13f5ada5ca03690ceb7bbbc663b3f9fb.zip | |
More build/install improvements:
1. Name the command-line tools with the "mps" prefix throughout, for consistency between build and installation.
2. Don't build "mpseventsql.exe" by default on Windows.
3. Instructions for building mpseventsql on the supported platforms.
Copied from Perforce
Change: 180913
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code')
| -rw-r--r-- | mps/code/comm.gmk | 14 | ||||
| -rw-r--r-- | mps/code/commpost.nmk | 10 | ||||
| -rw-r--r-- | mps/code/mps.xcodeproj/project.pbxproj | 84 |
3 files changed, 54 insertions, 54 deletions
diff --git a/mps/code/comm.gmk b/mps/code/comm.gmk index f0610635ad7..bfdf9a20c7a 100644 --- a/mps/code/comm.gmk +++ b/mps/code/comm.gmk | |||
| @@ -71,10 +71,10 @@ endif | |||
| 71 | 71 | ||
| 72 | # EXTRA TARGETS | 72 | # EXTRA TARGETS |
| 73 | # | 73 | # |
| 74 | # Don't build eventsql by default (might not have sqlite3 installed), | 74 | # Don't build mpseventsql by default (might not have sqlite3 installed), |
| 75 | # but do build eventcnv and eventtxt. | 75 | # but do build mpseventcnv and mpseventtxt. |
| 76 | 76 | ||
| 77 | EXTRA_TARGETS ?= eventcnv eventtxt | 77 | EXTRA_TARGETS ?= mpseventcnv mpseventtxt |
| 78 | 78 | ||
| 79 | 79 | ||
| 80 | # | 80 | # |
| @@ -433,13 +433,13 @@ $(PFM)/$(VARIETY)/zcoll: $(PFM)/$(VARIETY)/zcoll.o \ | |||
| 433 | $(PFM)/$(VARIETY)/zmess: $(PFM)/$(VARIETY)/zmess.o \ | 433 | $(PFM)/$(VARIETY)/zmess: $(PFM)/$(VARIETY)/zmess.o \ |
| 434 | $(FMTDYTSTOBJ) $(TESTLIBOBJ) $(PFM)/$(VARIETY)/mps.a | 434 | $(FMTDYTSTOBJ) $(TESTLIBOBJ) $(PFM)/$(VARIETY)/mps.a |
| 435 | 435 | ||
| 436 | $(PFM)/$(VARIETY)/eventcnv: $(PFM)/$(VARIETY)/eventcnv.o \ | 436 | $(PFM)/$(VARIETY)/mpseventcnv: $(PFM)/$(VARIETY)/eventcnv.o \ |
| 437 | $(PFM)/$(VARIETY)/eventpro.o $(PFM)/$(VARIETY)/mps.a | 437 | $(PFM)/$(VARIETY)/eventpro.o $(PFM)/$(VARIETY)/mps.a |
| 438 | 438 | ||
| 439 | $(PFM)/$(VARIETY)/eventtxt: $(PFM)/$(VARIETY)/eventtxt.o \ | 439 | $(PFM)/$(VARIETY)/mpseventtxt: $(PFM)/$(VARIETY)/eventtxt.o \ |
| 440 | $(PFM)/$(VARIETY)/mps.a | 440 | $(PFM)/$(VARIETY)/mps.a |
| 441 | 441 | ||
| 442 | $(PFM)/$(VARIETY)/eventsql: $(PFM)/$(VARIETY)/eventsql.o \ | 442 | $(PFM)/$(VARIETY)/mpseventsql: $(PFM)/$(VARIETY)/eventsql.o \ |
| 443 | $(PFM)/$(VARIETY)/mps.a | 443 | $(PFM)/$(VARIETY)/mps.a |
| 444 | 444 | ||
| 445 | $(PFM)/$(VARIETY)/replay: $(PFM)/$(VARIETY)/replay.o \ | 445 | $(PFM)/$(VARIETY)/replay: $(PFM)/$(VARIETY)/replay.o \ |
| @@ -542,7 +542,7 @@ $(PFM)/$(VARIETY)/%: | |||
| 542 | $(ECHO) "$(PFM): $@" | 542 | $(ECHO) "$(PFM): $@" |
| 543 | $(CC) $(CFLAGS) $(LINKFLAGS) -o $@ $^ $(LIBS) | 543 | $(CC) $(CFLAGS) $(LINKFLAGS) -o $@ $^ $(LIBS) |
| 544 | 544 | ||
| 545 | $(PFM)/$(VARIETY)/eventsql: | 545 | $(PFM)/$(VARIETY)/mpseventsql: |
| 546 | $(ECHO) "$(PFM): $@" | 546 | $(ECHO) "$(PFM): $@" |
| 547 | $(CC) $(CFLAGS) $(LINKFLAGS) -o $@ $^ $(LIBS) -lsqlite3 | 547 | $(CC) $(CFLAGS) $(LINKFLAGS) -o $@ $^ $(LIBS) -lsqlite3 |
| 548 | 548 | ||
diff --git a/mps/code/commpost.nmk b/mps/code/commpost.nmk index 51170f6dc42..793ec8e6035 100644 --- a/mps/code/commpost.nmk +++ b/mps/code/commpost.nmk | |||
| @@ -19,7 +19,7 @@ all: mpmss.exe amcss.exe amsss.exe amssshe.exe segsmss.exe awlut.exe awluthe.exe | |||
| 19 | arenacv.exe bttest.exe teletest.exe \ | 19 | arenacv.exe bttest.exe teletest.exe \ |
| 20 | abqtest.exe cbstest.exe btcv.exe mv2test.exe messtest.exe steptest.exe \ | 20 | abqtest.exe cbstest.exe btcv.exe mv2test.exe messtest.exe steptest.exe \ |
| 21 | locbwcss.exe locusss.exe zcoll.exe zmess.exe \ | 21 | locbwcss.exe locusss.exe zcoll.exe zmess.exe \ |
| 22 | eventcnv.exe eventtxt.exe eventsql.exe \ | 22 | mpseventcnv.exe mpseventtxt.exe \ |
| 23 | mps.lib | 23 | mps.lib |
| 24 | 24 | ||
| 25 | 25 | ||
| @@ -37,7 +37,7 @@ mpmss.exe amcss.exe amcsshe.exe amsss.exe amssshe.exe segsmss.exe awlut.exe awlu | |||
| 37 | abqtest.exe cbstest.exe btcv.exe mv2test.exe messtest.exe steptest.exe \ | 37 | abqtest.exe cbstest.exe btcv.exe mv2test.exe messtest.exe steptest.exe \ |
| 38 | walkt0.exe locbwcss.exe locusss.exe \ | 38 | walkt0.exe locbwcss.exe locusss.exe \ |
| 39 | exposet0.exe zcoll.exe zmess.exe \ | 39 | exposet0.exe zcoll.exe zmess.exe \ |
| 40 | replay.exe replaysw.exe eventcnv.exe eventtxt.exe eventsql.exe \ | 40 | replay.exe replaysw.exe mpseventcnv.exe mpseventtxt.exe mpseventsql.exe \ |
| 41 | mps.lib: | 41 | mps.lib: |
| 42 | !IFDEF VARIETY | 42 | !IFDEF VARIETY |
| 43 | $(MAKE) /nologo /f $(PFM).nmk TARGET=$@ variety | 43 | $(MAKE) /nologo /f $(PFM).nmk TARGET=$@ variety |
| @@ -231,13 +231,13 @@ $(PFM)\$(VARIETY)\zmess.exe: $(PFM)\$(VARIETY)\zmess.obj \ | |||
| 231 | $(PFM)\$(VARIETY)\mps.lib $(FMTTESTOBJ) \ | 231 | $(PFM)\$(VARIETY)\mps.lib $(FMTTESTOBJ) \ |
| 232 | $(TESTLIBOBJ) | 232 | $(TESTLIBOBJ) |
| 233 | 233 | ||
| 234 | $(PFM)\$(VARIETY)\eventcnv.exe: $(PFM)\$(VARIETY)\eventcnv.obj \ | 234 | $(PFM)\$(VARIETY)\mpseventcnv.exe: $(PFM)\$(VARIETY)\eventcnv.obj \ |
| 235 | $(PFM)\$(VARIETY)\eventpro.obj $(PFM)\$(VARIETY)\mps.lib | 235 | $(PFM)\$(VARIETY)\eventpro.obj $(PFM)\$(VARIETY)\mps.lib |
| 236 | 236 | ||
| 237 | $(PFM)\$(VARIETY)\eventtxt.exe: $(PFM)\$(VARIETY)\eventtxt.obj \ | 237 | $(PFM)\$(VARIETY)\mpseventtxt.exe: $(PFM)\$(VARIETY)\eventtxt.obj \ |
| 238 | $(PFM)\$(VARIETY)\mps.lib | 238 | $(PFM)\$(VARIETY)\mps.lib |
| 239 | 239 | ||
| 240 | $(PFM)\$(VARIETY)\eventsql.exe: $(PFM)\$(VARIETY)\eventsql.obj \ | 240 | $(PFM)\$(VARIETY)\mpseventsql.exe: $(PFM)\$(VARIETY)\eventsql.obj \ |
| 241 | $(PFM)\$(VARIETY)\sqlite3.obj $(PFM)\$(VARIETY)\mps.lib | 241 | $(PFM)\$(VARIETY)\sqlite3.obj $(PFM)\$(VARIETY)\mps.lib |
| 242 | 242 | ||
| 243 | $(PFM)\$(VARIETY)\replay.exe: $(PFM)\$(VARIETY)\replay.obj \ | 243 | $(PFM)\$(VARIETY)\replay.exe: $(PFM)\$(VARIETY)\replay.obj \ |
diff --git a/mps/code/mps.xcodeproj/project.pbxproj b/mps/code/mps.xcodeproj/project.pbxproj index 08b81eb2752..00ed384e6ee 100644 --- a/mps/code/mps.xcodeproj/project.pbxproj +++ b/mps/code/mps.xcodeproj/project.pbxproj | |||
| @@ -207,14 +207,14 @@ | |||
| 207 | containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */; | 207 | containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */; |
| 208 | proxyType = 1; | 208 | proxyType = 1; |
| 209 | remoteGlobalIDString = 2D604B9B16514B1A003AAF46; | 209 | remoteGlobalIDString = 2D604B9B16514B1A003AAF46; |
| 210 | remoteInfo = eventtxt; | 210 | remoteInfo = mpseventtxt; |
| 211 | }; | 211 | }; |
| 212 | 2D07B9781636FCBD00DB751B /* PBXContainerItemProxy */ = { | 212 | 2D07B9781636FCBD00DB751B /* PBXContainerItemProxy */ = { |
| 213 | isa = PBXContainerItemProxy; | 213 | isa = PBXContainerItemProxy; |
| 214 | containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */; | 214 | containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */; |
| 215 | proxyType = 1; | 215 | proxyType = 1; |
| 216 | remoteGlobalIDString = 2D07B9701636FC9900DB751B; | 216 | remoteGlobalIDString = 2D07B9701636FC9900DB751B; |
| 217 | remoteInfo = eventsql; | 217 | remoteInfo = mpseventsql; |
| 218 | }; | 218 | }; |
| 219 | 3104AFC0156D35AE000A585A /* PBXContainerItemProxy */ = { | 219 | 3104AFC0156D35AE000A585A /* PBXContainerItemProxy */ = { |
| 220 | isa = PBXContainerItemProxy; | 220 | isa = PBXContainerItemProxy; |
| @@ -529,7 +529,7 @@ | |||
| 529 | containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */; | 529 | containerPortal = 31EEABDA156AAE9E00714D05 /* Project object */; |
| 530 | proxyType = 1; | 530 | proxyType = 1; |
| 531 | remoteGlobalIDString = 3114A6C5156E9815001E0AA3; | 531 | remoteGlobalIDString = 3114A6C5156E9815001E0AA3; |
| 532 | remoteInfo = eventcnv; | 532 | remoteInfo = mpseventcnv; |
| 533 | }; | 533 | }; |
| 534 | 31A47BA9156C210D0039B1C2 /* PBXContainerItemProxy */ = { | 534 | 31A47BA9156C210D0039B1C2 /* PBXContainerItemProxy */ = { |
| 535 | isa = PBXContainerItemProxy; | 535 | isa = PBXContainerItemProxy; |
| @@ -938,9 +938,9 @@ | |||
| 938 | 938 | ||
| 939 | /* Begin PBXFileReference section */ | 939 | /* Begin PBXFileReference section */ |
| 940 | 2D07B96C1636FC7200DB751B /* eventsql.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = eventsql.c; sourceTree = "<group>"; }; | 940 | 2D07B96C1636FC7200DB751B /* eventsql.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = eventsql.c; sourceTree = "<group>"; }; |
| 941 | 2D07B9711636FC9900DB751B /* eventsql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = eventsql; sourceTree = BUILT_PRODUCTS_DIR; }; | 941 | 2D07B9711636FC9900DB751B /* mpseventsql */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mpseventsql; sourceTree = BUILT_PRODUCTS_DIR; }; |
| 942 | 2D07B97B163705E400DB751B /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; }; | 942 | 2D07B97B163705E400DB751B /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; }; |
| 943 | 2D604B9C16514B1A003AAF46 /* eventtxt */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = eventtxt; sourceTree = BUILT_PRODUCTS_DIR; }; | 943 | 2D604B9C16514B1A003AAF46 /* mpseventtxt */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mpseventtxt; sourceTree = BUILT_PRODUCTS_DIR; }; |
| 944 | 2D604BA416514C4F003AAF46 /* eventtxt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = eventtxt.c; sourceTree = "<group>"; }; | 944 | 2D604BA416514C4F003AAF46 /* eventtxt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = eventtxt.c; sourceTree = "<group>"; }; |
| 945 | 3104AFA5156D27E7000A585A /* ssixi6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ssixi6.c; sourceTree = "<group>"; }; | 945 | 3104AFA5156D27E7000A585A /* ssixi6.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ssixi6.c; sourceTree = "<group>"; }; |
| 946 | 3104AFB3156D357B000A585A /* apss */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = apss; sourceTree = BUILT_PRODUCTS_DIR; }; | 946 | 3104AFB3156D357B000A585A /* apss */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = apss; sourceTree = BUILT_PRODUCTS_DIR; }; |
| @@ -982,7 +982,7 @@ | |||
| 982 | 3114A69F156E9725001E0AA3 /* messtest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = messtest.c; sourceTree = "<group>"; }; | 982 | 3114A69F156E9725001E0AA3 /* messtest.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = messtest.c; sourceTree = "<group>"; }; |
| 983 | 3114A6AC156E9759001E0AA3 /* walkt0 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = walkt0; sourceTree = BUILT_PRODUCTS_DIR; }; | 983 | 3114A6AC156E9759001E0AA3 /* walkt0 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = walkt0; sourceTree = BUILT_PRODUCTS_DIR; }; |
| 984 | 3114A6BA156E9768001E0AA3 /* walkt0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = walkt0.c; sourceTree = "<group>"; }; | 984 | 3114A6BA156E9768001E0AA3 /* walkt0.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = walkt0.c; sourceTree = "<group>"; }; |
| 985 | 3114A6C6156E9815001E0AA3 /* eventcnv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = eventcnv; sourceTree = BUILT_PRODUCTS_DIR; }; | 985 | 3114A6C6156E9815001E0AA3 /* mpseventcnv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = mpseventcnv; sourceTree = BUILT_PRODUCTS_DIR; }; |
| 986 | 3114A6D0156E9829001E0AA3 /* eventcnv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = eventcnv.c; sourceTree = "<group>"; }; | 986 | 3114A6D0156E9829001E0AA3 /* eventcnv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = eventcnv.c; sourceTree = "<group>"; }; |
| 987 | 3114A6D9156E9950001E0AA3 /* eventpro.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = eventpro.c; sourceTree = "<group>"; }; | 987 | 3114A6D9156E9950001E0AA3 /* eventpro.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = eventpro.c; sourceTree = "<group>"; }; |
| 988 | 3124CAB8156BE3EC00753214 /* awlut */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = awlut; sourceTree = BUILT_PRODUCTS_DIR; }; | 988 | 3124CAB8156BE3EC00753214 /* awlut */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = awlut; sourceTree = BUILT_PRODUCTS_DIR; }; |
| @@ -1335,20 +1335,20 @@ | |||
| 1335 | /* End PBXFrameworksBuildPhase section */ | 1335 | /* End PBXFrameworksBuildPhase section */ |
| 1336 | 1336 | ||
| 1337 | /* Begin PBXGroup section */ | 1337 | /* Begin PBXGroup section */ |
| 1338 | 2D07B96A1636FC4C00DB751B /* eventsql */ = { | 1338 | 2D07B96A1636FC4C00DB751B /* mpseventsql */ = { |
| 1339 | isa = PBXGroup; | 1339 | isa = PBXGroup; |
| 1340 | children = ( | 1340 | children = ( |
| 1341 | 2D07B96C1636FC7200DB751B /* eventsql.c */, | 1341 | 2D07B96C1636FC7200DB751B /* eventsql.c */, |
| 1342 | ); | 1342 | ); |
| 1343 | name = eventsql; | 1343 | name = mpseventsql; |
| 1344 | sourceTree = "<group>"; | 1344 | sourceTree = "<group>"; |
| 1345 | }; | 1345 | }; |
| 1346 | 2D604B971651433C003AAF46 /* eventtxt */ = { | 1346 | 2D604B971651433C003AAF46 /* mpseventtxt */ = { |
| 1347 | isa = PBXGroup; | 1347 | isa = PBXGroup; |
| 1348 | children = ( | 1348 | children = ( |
| 1349 | 2D604BA416514C4F003AAF46 /* eventtxt.c */, | 1349 | 2D604BA416514C4F003AAF46 /* eventtxt.c */, |
| 1350 | ); | 1350 | ); |
| 1351 | name = eventtxt; | 1351 | name = mpseventtxt; |
| 1352 | sourceTree = "<group>"; | 1352 | sourceTree = "<group>"; |
| 1353 | }; | 1353 | }; |
| 1354 | 3114A647156E956C001E0AA3 /* Mysterious */ = { | 1354 | 3114A647156E956C001E0AA3 /* Mysterious */ = { |
| @@ -1363,20 +1363,20 @@ | |||
| 1363 | 3114A6D6156E9846001E0AA3 /* Tools */ = { | 1363 | 3114A6D6156E9846001E0AA3 /* Tools */ = { |
| 1364 | isa = PBXGroup; | 1364 | isa = PBXGroup; |
| 1365 | children = ( | 1365 | children = ( |
| 1366 | 2D604B971651433C003AAF46 /* eventtxt */, | 1366 | 2D604B971651433C003AAF46 /* mpseventtxt */, |
| 1367 | 2D07B96A1636FC4C00DB751B /* eventsql */, | 1367 | 2D07B96A1636FC4C00DB751B /* mpseventsql */, |
| 1368 | 3114A6D8156E9942001E0AA3 /* eventcnv */, | 1368 | 3114A6D8156E9942001E0AA3 /* mpseventcnv */, |
| 1369 | ); | 1369 | ); |
| 1370 | name = Tools; | 1370 | name = Tools; |
| 1371 | sourceTree = "<group>"; | 1371 | sourceTree = "<group>"; |
| 1372 | }; | 1372 | }; |
| 1373 | 3114A6D8156E9942001E0AA3 /* eventcnv */ = { | 1373 | 3114A6D8156E9942001E0AA3 /* mpseventcnv */ = { |
| 1374 | isa = PBXGroup; | 1374 | isa = PBXGroup; |
| 1375 | children = ( | 1375 | children = ( |
| 1376 | 3114A6D9156E9950001E0AA3 /* eventpro.c */, | 1376 | 3114A6D9156E9950001E0AA3 /* eventpro.c */, |
| 1377 | 3114A6D0156E9829001E0AA3 /* eventcnv.c */, | 1377 | 3114A6D0156E9829001E0AA3 /* eventcnv.c */, |
| 1378 | ); | 1378 | ); |
| 1379 | name = eventcnv; | 1379 | name = mpseventcnv; |
| 1380 | sourceTree = "<group>"; | 1380 | sourceTree = "<group>"; |
| 1381 | }; | 1381 | }; |
| 1382 | 3124CAB3156BE1B700753214 /* Tests */ = { | 1382 | 3124CAB3156BE1B700753214 /* Tests */ = { |
| @@ -1493,9 +1493,9 @@ | |||
| 1493 | 3114A67C156E9668001E0AA3 /* mv2test */, | 1493 | 3114A67C156E9668001E0AA3 /* mv2test */, |
| 1494 | 3114A695156E971B001E0AA3 /* messtest */, | 1494 | 3114A695156E971B001E0AA3 /* messtest */, |
| 1495 | 3114A6AC156E9759001E0AA3 /* walkt0 */, | 1495 | 3114A6AC156E9759001E0AA3 /* walkt0 */, |
| 1496 | 3114A6C6156E9815001E0AA3 /* eventcnv */, | 1496 | 3114A6C6156E9815001E0AA3 /* mpseventcnv */, |
| 1497 | 2D07B9711636FC9900DB751B /* eventsql */, | 1497 | 2D07B9711636FC9900DB751B /* mpseventsql */, |
| 1498 | 2D604B9C16514B1A003AAF46 /* eventtxt */, | 1498 | 2D604B9C16514B1A003AAF46 /* mpseventtxt */, |
| 1499 | ); | 1499 | ); |
| 1500 | name = Products; | 1500 | name = Products; |
| 1501 | sourceTree = "<group>"; | 1501 | sourceTree = "<group>"; |
| @@ -1595,9 +1595,9 @@ | |||
| 1595 | /* End PBXHeadersBuildPhase section */ | 1595 | /* End PBXHeadersBuildPhase section */ |
| 1596 | 1596 | ||
| 1597 | /* Begin PBXNativeTarget section */ | 1597 | /* Begin PBXNativeTarget section */ |
| 1598 | 2D07B9701636FC9900DB751B /* eventsql */ = { | 1598 | 2D07B9701636FC9900DB751B /* mpseventsql */ = { |
| 1599 | isa = PBXNativeTarget; | 1599 | isa = PBXNativeTarget; |
| 1600 | buildConfigurationList = 2D07B9741636FC9900DB751B /* Build configuration list for PBXNativeTarget "eventsql" */; | 1600 | buildConfigurationList = 2D07B9741636FC9900DB751B /* Build configuration list for PBXNativeTarget "mpseventsql" */; |
| 1601 | buildPhases = ( | 1601 | buildPhases = ( |
| 1602 | 2D07B96D1636FC9900DB751B /* Sources */, | 1602 | 2D07B96D1636FC9900DB751B /* Sources */, |
| 1603 | 2D07B96E1636FC9900DB751B /* Frameworks */, | 1603 | 2D07B96E1636FC9900DB751B /* Frameworks */, |
| @@ -1607,14 +1607,14 @@ | |||
| 1607 | ); | 1607 | ); |
| 1608 | dependencies = ( | 1608 | dependencies = ( |
| 1609 | ); | 1609 | ); |
| 1610 | name = eventsql; | 1610 | name = mpseventsql; |
| 1611 | productName = eventsql; | 1611 | productName = mpseventsql; |
| 1612 | productReference = 2D07B9711636FC9900DB751B /* eventsql */; | 1612 | productReference = 2D07B9711636FC9900DB751B /* mpseventsql */; |
| 1613 | productType = "com.apple.product-type.tool"; | 1613 | productType = "com.apple.product-type.tool"; |
| 1614 | }; | 1614 | }; |
| 1615 | 2D604B9B16514B1A003AAF46 /* eventtxt */ = { | 1615 | 2D604B9B16514B1A003AAF46 /* mpseventtxt */ = { |
| 1616 | isa = PBXNativeTarget; | 1616 | isa = PBXNativeTarget; |
| 1617 | buildConfigurationList = 2D604BA216514B59003AAF46 /* Build configuration list for PBXNativeTarget "eventtxt" */; | 1617 | buildConfigurationList = 2D604BA216514B59003AAF46 /* Build configuration list for PBXNativeTarget "mpseventtxt" */; |
| 1618 | buildPhases = ( | 1618 | buildPhases = ( |
| 1619 | 2D604B9816514B1A003AAF46 /* Sources */, | 1619 | 2D604B9816514B1A003AAF46 /* Sources */, |
| 1620 | 2D604B9916514B1A003AAF46 /* Frameworks */, | 1620 | 2D604B9916514B1A003AAF46 /* Frameworks */, |
| @@ -1624,9 +1624,9 @@ | |||
| 1624 | ); | 1624 | ); |
| 1625 | dependencies = ( | 1625 | dependencies = ( |
| 1626 | ); | 1626 | ); |
| 1627 | name = eventtxt; | 1627 | name = mpseventtxt; |
| 1628 | productName = eventtxt; | 1628 | productName = mpseventtxt; |
| 1629 | productReference = 2D604B9C16514B1A003AAF46 /* eventtxt */; | 1629 | productReference = 2D604B9C16514B1A003AAF46 /* mpseventtxt */; |
| 1630 | productType = "com.apple.product-type.tool"; | 1630 | productType = "com.apple.product-type.tool"; |
| 1631 | }; | 1631 | }; |
| 1632 | 3104AFB2156D357B000A585A /* apss */ = { | 1632 | 3104AFB2156D357B000A585A /* apss */ = { |
| @@ -1971,9 +1971,9 @@ | |||
| 1971 | productReference = 3114A6AC156E9759001E0AA3 /* walkt0 */; | 1971 | productReference = 3114A6AC156E9759001E0AA3 /* walkt0 */; |
| 1972 | productType = "com.apple.product-type.tool"; | 1972 | productType = "com.apple.product-type.tool"; |
| 1973 | }; | 1973 | }; |
| 1974 | 3114A6C5156E9815001E0AA3 /* eventcnv */ = { | 1974 | 3114A6C5156E9815001E0AA3 /* mpseventcnv */ = { |
| 1975 | isa = PBXNativeTarget; | 1975 | isa = PBXNativeTarget; |
| 1976 | buildConfigurationList = 3114A6CD156E9815001E0AA3 /* Build configuration list for PBXNativeTarget "eventcnv" */; | 1976 | buildConfigurationList = 3114A6CD156E9815001E0AA3 /* Build configuration list for PBXNativeTarget "mpseventcnv" */; |
| 1977 | buildPhases = ( | 1977 | buildPhases = ( |
| 1978 | 3114A6C2156E9815001E0AA3 /* Sources */, | 1978 | 3114A6C2156E9815001E0AA3 /* Sources */, |
| 1979 | 3114A6C3156E9815001E0AA3 /* Frameworks */, | 1979 | 3114A6C3156E9815001E0AA3 /* Frameworks */, |
| @@ -1984,9 +1984,9 @@ | |||
| 1984 | dependencies = ( | 1984 | dependencies = ( |
| 1985 | 3114A6D3156E9834001E0AA3 /* PBXTargetDependency */, | 1985 | 3114A6D3156E9834001E0AA3 /* PBXTargetDependency */, |
| 1986 | ); | 1986 | ); |
| 1987 | name = eventcnv; | 1987 | name = mpseventcnv; |
| 1988 | productName = eventcnv; | 1988 | productName = mpseventcnv; |
| 1989 | productReference = 3114A6C6156E9815001E0AA3 /* eventcnv */; | 1989 | productReference = 3114A6C6156E9815001E0AA3 /* mpseventcnv */; |
| 1990 | productType = "com.apple.product-type.tool"; | 1990 | productType = "com.apple.product-type.tool"; |
| 1991 | }; | 1991 | }; |
| 1992 | 3124CAB7156BE3EC00753214 /* awlut */ = { | 1992 | 3124CAB7156BE3EC00753214 /* awlut */ = { |
| @@ -2237,9 +2237,9 @@ | |||
| 2237 | 3114A67B156E9668001E0AA3 /* mv2test */, | 2237 | 3114A67B156E9668001E0AA3 /* mv2test */, |
| 2238 | 3114A694156E971B001E0AA3 /* messtest */, | 2238 | 3114A694156E971B001E0AA3 /* messtest */, |
| 2239 | 3114A6AB156E9759001E0AA3 /* walkt0 */, | 2239 | 3114A6AB156E9759001E0AA3 /* walkt0 */, |
| 2240 | 3114A6C5156E9815001E0AA3 /* eventcnv */, | 2240 | 3114A6C5156E9815001E0AA3 /* mpseventcnv */, |
| 2241 | 2D07B9701636FC9900DB751B /* eventsql */, | 2241 | 2D07B9701636FC9900DB751B /* mpseventsql */, |
| 2242 | 2D604B9B16514B1A003AAF46 /* eventtxt */, | 2242 | 2D604B9B16514B1A003AAF46 /* mpseventtxt */, |
| 2243 | ); | 2243 | ); |
| 2244 | }; | 2244 | }; |
| 2245 | /* End PBXProject section */ | 2245 | /* End PBXProject section */ |
| @@ -2595,12 +2595,12 @@ | |||
| 2595 | /* Begin PBXTargetDependency section */ | 2595 | /* Begin PBXTargetDependency section */ |
| 2596 | 22E16A8916C141020090AD9F /* PBXTargetDependency */ = { | 2596 | 22E16A8916C141020090AD9F /* PBXTargetDependency */ = { |
| 2597 | isa = PBXTargetDependency; | 2597 | isa = PBXTargetDependency; |
| 2598 | target = 2D604B9B16514B1A003AAF46 /* eventtxt */; | 2598 | target = 2D604B9B16514B1A003AAF46 /* mpseventtxt */; |
| 2599 | targetProxy = 22E16A8816C141020090AD9F /* PBXContainerItemProxy */; | 2599 | targetProxy = 22E16A8816C141020090AD9F /* PBXContainerItemProxy */; |
| 2600 | }; | 2600 | }; |
| 2601 | 2D07B9791636FCBD00DB751B /* PBXTargetDependency */ = { | 2601 | 2D07B9791636FCBD00DB751B /* PBXTargetDependency */ = { |
| 2602 | isa = PBXTargetDependency; | 2602 | isa = PBXTargetDependency; |
| 2603 | target = 2D07B9701636FC9900DB751B /* eventsql */; | 2603 | target = 2D07B9701636FC9900DB751B /* mpseventsql */; |
| 2604 | targetProxy = 2D07B9781636FCBD00DB751B /* PBXContainerItemProxy */; | 2604 | targetProxy = 2D07B9781636FCBD00DB751B /* PBXContainerItemProxy */; |
| 2605 | }; | 2605 | }; |
| 2606 | 3104AFC1156D35AE000A585A /* PBXTargetDependency */ = { | 2606 | 3104AFC1156D35AE000A585A /* PBXTargetDependency */ = { |
| @@ -2825,7 +2825,7 @@ | |||
| 2825 | }; | 2825 | }; |
| 2826 | 3114A6D5156E9839001E0AA3 /* PBXTargetDependency */ = { | 2826 | 3114A6D5156E9839001E0AA3 /* PBXTargetDependency */ = { |
| 2827 | isa = PBXTargetDependency; | 2827 | isa = PBXTargetDependency; |
| 2828 | target = 3114A6C5156E9815001E0AA3 /* eventcnv */; | 2828 | target = 3114A6C5156E9815001E0AA3 /* mpseventcnv */; |
| 2829 | targetProxy = 3114A6D4156E9839001E0AA3 /* PBXContainerItemProxy */; | 2829 | targetProxy = 3114A6D4156E9839001E0AA3 /* PBXContainerItemProxy */; |
| 2830 | }; | 2830 | }; |
| 2831 | 31A47BAA156C210D0039B1C2 /* PBXTargetDependency */ = { | 2831 | 31A47BAA156C210D0039B1C2 /* PBXTargetDependency */ = { |
| @@ -3809,7 +3809,7 @@ | |||
| 3809 | /* End XCBuildConfiguration section */ | 3809 | /* End XCBuildConfiguration section */ |
| 3810 | 3810 | ||
| 3811 | /* Begin XCConfigurationList section */ | 3811 | /* Begin XCConfigurationList section */ |
| 3812 | 2D07B9741636FC9900DB751B /* Build configuration list for PBXNativeTarget "eventsql" */ = { | 3812 | 2D07B9741636FC9900DB751B /* Build configuration list for PBXNativeTarget "mpseventsql" */ = { |
| 3813 | isa = XCConfigurationList; | 3813 | isa = XCConfigurationList; |
| 3814 | buildConfigurations = ( | 3814 | buildConfigurations = ( |
| 3815 | 2D07B9751636FC9900DB751B /* Debug */, | 3815 | 2D07B9751636FC9900DB751B /* Debug */, |
| @@ -3819,7 +3819,7 @@ | |||
| 3819 | defaultConfigurationIsVisible = 0; | 3819 | defaultConfigurationIsVisible = 0; |
| 3820 | defaultConfigurationName = Release; | 3820 | defaultConfigurationName = Release; |
| 3821 | }; | 3821 | }; |
| 3822 | 2D604BA216514B59003AAF46 /* Build configuration list for PBXNativeTarget "eventtxt" */ = { | 3822 | 2D604BA216514B59003AAF46 /* Build configuration list for PBXNativeTarget "mpseventtxt" */ = { |
| 3823 | isa = XCConfigurationList; | 3823 | isa = XCConfigurationList; |
| 3824 | buildConfigurations = ( | 3824 | buildConfigurations = ( |
| 3825 | 2D604B9F16514B1A003AAF46 /* Debug */, | 3825 | 2D604B9F16514B1A003AAF46 /* Debug */, |
| @@ -4029,7 +4029,7 @@ | |||
| 4029 | defaultConfigurationIsVisible = 0; | 4029 | defaultConfigurationIsVisible = 0; |
| 4030 | defaultConfigurationName = Release; | 4030 | defaultConfigurationName = Release; |
| 4031 | }; | 4031 | }; |
| 4032 | 3114A6CD156E9815001E0AA3 /* Build configuration list for PBXNativeTarget "eventcnv" */ = { | 4032 | 3114A6CD156E9815001E0AA3 /* Build configuration list for PBXNativeTarget "mpseventcnv" */ = { |
| 4033 | isa = XCConfigurationList; | 4033 | isa = XCConfigurationList; |
| 4034 | buildConfigurations = ( | 4034 | buildConfigurations = ( |
| 4035 | 3114A6CE156E9815001E0AA3 /* Debug */, | 4035 | 3114A6CE156E9815001E0AA3 /* Debug */, |