-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCebuild.bat
3863 lines (3368 loc) · 463 KB
/
Cebuild.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@echo on
goto skip_comment
rem DECtalk for windows CE build script
rem 10-apr-1999 mfg added ARM support and WINce 211 support
rem 08-feb-2000 mfg added Access32 support
rem 08-feb-2000 mfg added email reader build for 211 it is not supported for 200
rem 13-apr-2000 cab added windic build for 211
rem 09-aug-2000 cab removed windic from wce200 build and fix error in name of folder
rem 14-sep-2000 cab Added Ceagent to build
rem 18-oct-2000 cab Added French to build
rem Convert .mak to .vcn for make for Embedded Visual studio
rem Changed VCROOT to embedded tools directory
rem 25-oct-2000 cab Added makefile for wce211 PALM SIZE PC and WCE300 POCKET PC
rem 26-oct-2000 cab Removed mailread and windic for PALM SIZE PC
rem 30-oct-2000 cab Removed dtsample and windic for Pocket PC
rem 11-dec-2000 cab
rem 2. Fixed error of incorrect path to x86em changed to arm
rem 13-dec-2000 cab 1. Added a message of not build for static and dll workspaces.
rem 16-feb-2001 cab Added error with build process variables
rem 20-feb-2001 cab 1. Fixed errors in goto, labels and if
rem 2. Created output of errors messages to win_ce.txt
rem 07-mar-2001 cab Fixed script errors for error outputs
rem 13-mar-2001 cab Fixed script errors for error outputs
rem 19-mar-2001 cab Fixed error of sh3 to sh
rem 28-mar-2001 cab Fixed build_log error for cetalk for palm-size
rem 29-mar-2001 cab 1. Fixed missing d for cetalk
rem 2. Removed extra folder from .\dtalkml\build
rem 30-mar-2001 cab 1. Added dtsample for wce300
rem 2. unrem stuff for dtsample
rem 3.change sh3 to sh
rem 05-apr-2001 cab 1. Added force build for dtalkml
rem 13-apr-2001 cab Removed /A option
rem 05-jun-2001 cab Removed access32
rem 06-jun-2001 cab Removed ceagent
rem 25-sep-2001 cab Fixed error missing \ for build_log
rem 08-oct-2001 cab 1. Fixed typos for error log
rem 2. Removed force build references
rem 26-sep-2001 cab Removed wce200
rem 18-dec-2001 cab Added hpc2000\smartmedia
rem 28-dec-2001 cab Removed .\dtalkml\%PLATFORM%\ce folder
rem 11-jan-2002 cab 1.Fix error in wince tools directory to hpc2000
rem 2.Fix error in smartmedia no mfc directory
rem 14-jan-2002 cab 1. Fix hpc200 for x86 to lowercase dll for configuration
rem 2. Fix missing a to smartmedia folder name
rem 19-mar-2002 cab Changed Windows CE software to C:
rem 02-oct-2002 cab Fixed goto label
:skip_comment
@echo To override the default settings,
@echo Type the name of this batch file followed by a platform choice: WCE100 WCE101 WCE200
@echo Example: wcesh WCE200
set PLATFORM=wce211
set build_wce_static=build\cestatic
set build_wce_dll=build\cedll
set build_wce_dllvb=build\cedllvb
set build_static=build\static
set build_dll=build\dll
set INCLUDE=%INCLUDE%
rem bug parameters
set bug_arm_ce=0
set bug_arm_cedll=0
set bug_mips_ce=0
set bug_mips_cedll=0
set bug_sh_cedll=0
set bug_sh_cedll=0
set bug_sh4_ce=0
set bug_sh4_cedll=0
set bug_x86em_ce=0
set bug_x86em_cedll=0
rem software directory paths
set VCROOT=C:\Program Files\Microsoft eMbedded Tools
set DEVROOT=C:\Windows CE Tools
set SDKROOT=C:\Windows CE Tools
rem goto :wce_palm
rem if /i "%1"=="WCE200" goto default
if /i "%1"=="WCE211" goto build_wce211_pro
if /i "%1"=="WCE300" goto build_wce300_pocket
if /i "%1"=="WCE300POCKET" goto build_wce300_pocket
if /i "%1"=="WCE3002000" goto build_wce300_2000
if /i "%1"=="WCE300SMARTMEDIA" goto build_wce300_SMARTMEDIA
rem if /i "%1"=="WCE200ML" goto build_wce200ML
rem if /i "%1"=="WCE211ML" goto build_wce211ML_pro
rem if /i "%1"=="WCE300ML" goto build_wce300ML_pocket
if "%1"=="" goto build_wce211_pro
if /i NOT {%1}=={} goto display_options
goto settings
:display_options
@echo options are: cebuild.bat [wce200ml] [wce211] [wce211ml] [wce300] [wce300ml]
@echo wce200 - build all of wce200
rem @echo wce200ml - builds the multi-lang dll for wce200
@echo wce211 - builds all of wce211(MS HPC Pro and MS Palm Size PC)
rem @echo wce211ml -
@echo wce300 - builds all of wce300
rem @echo wce300ml - builds multi-lang dll for wce300
goto end
:default
set PLATFORM=WCE200
:settings
set PATH=%VCROOT%\Common\EVC\Bin;%VCROOT%\EVC\%PLATFORM%\Bin;%path%
set INCLUDE=%DEVROOT%\%PLATFORM%\MS HPC\include;%DEVROOT%\%PLATFORM%\MS HPC\mfc\include;
rem if been built once move back so we don't have to build again
if exist .\dapi\build\%PLATFORM%\cedll move .\dapi\build\%PLATFORM%\cedll .\dapi\build\cedll
if exist .\dapi\build\%PLATFORM%\cedllvb move .\dapi\build\%PLATFORM%\cedllvb .\dapi\build\cedllvb
if exist .\dapi\build\%PLATFORM%\cestatic move .\dapi\build\%PLATFORM%\cestatic .\dapi\build\cestatic
if exist .\samplece\CEtalk\build\%PLATFORM%\dll move .\samplece\CEtalk\build\%PLATFORM%\dll .\samplece\CEtalk\build\dll
if exist .\samplece\CEtalk\build\%PLATFORM%\static move .\samplece\CEtalk\build\%PLATFORM%\static .\samplece\CEtalk\build\static
if exist .\samplece\Dtsample\build\%PLATFORM%\dll move .\samplece\Dtsample\build\%PLATFORM%\dll .\samplece\Dtsample\build\dll
if exist .\samplece\Dtsample\build\%PLATFORM%\static move .\samplece\Dtsample\build\%PLATFORM%\static .\samplece\Dtsample\build\static
if exist .\dtalkml\build\%PLATFORM% move .\dtalkml\build\%PLATFORM% .\dtalkml\build\ce
rem set paths for DECtalk CE build WCE200
cd .\dapi\src
rem remove WCE200 from build
goto skipce200
@echo make the static and dynamic library version of dectalk for the mips platform
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\mips;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\mips;
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\mips\us\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE MIPS) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\us\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\mips\sp\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE MIPS) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\sp\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\mips\la\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE MIPS) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\la\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\mips\uk\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE MIPS) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\uk\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\mips\fr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE MIPS) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\fr\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\mips\gr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE MIPS) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\gr\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\mips\it\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE MIPS) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\it\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\mips\us\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE MIPS) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\us\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\mips\sp\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE MIPS) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\sp\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\mips\la\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE MIPS) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\la\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\mips\uk\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE MIPS) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\uk\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\mips\fr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE MIPS) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\fr\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\mips\gr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE MIPS) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\gr\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\mips\it\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE MIPS) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\it\release\dectalk.dll set bug_mips_cedll=1
@echo make the static and dynamic library versions of dectalk for the sh platform
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\sh3;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\sh3;
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\sh\us\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE SH3) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\us\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\sh\sp\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE SH3) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\sp\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\sh\la\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE SH3) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\la\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\sh\uk\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE SH3) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\uk\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\sh\fr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE SH3) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\fr\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\sh\gr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE SH3) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\gr\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\sh\it\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE SH3) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\it\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\sh\us\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE SH3) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\us\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\sh\sp\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE SH3) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\sp\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\sh\la\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE SH3) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\la\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\sh\uk\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE SH3) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\uk\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\sh\fr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE SH3) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\fr\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\sh\gr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE SH3) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\gr\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\sh\it\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE SH3) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\it\release\dectalk.dll set bug_sh_cedll=1
@echo make the static and dynamic library versions of dectalk for the x86em platform
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\X86em;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\X86em;
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\x86em\us\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE X86EM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\us\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\x86em\sp\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE X86EM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\sp\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\x86em\la\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE X86EM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\la\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\x86em\uk\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE X86EM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\uk\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\x86em\fr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE X86EM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\fr\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\x86em\gr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE X86EM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\gr\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_static%\x86em\it\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce200 Win32 (WCE X86EM) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\it\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\x86em\us\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE X86EM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\us\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\x86em\sp\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE X86EM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\sp\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\x86em\la\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE X86EM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\la\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\x86em\uk\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE X86EM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\uk\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\x86em\fr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE X86EM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\fr\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\x86em\gr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE X86EM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\gr\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\%build_wce_dll%\x86em\it\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce200 Win32 (WCE X86EM) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\it\release\dectalk.dll set bug_x86em_cedll=1
@echo build DTSample
cd .\..\..\samplece\Dtsample
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\mips;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\mips;
rem if "%bug_mips_ce%"=="1" goto wce200_dtsample_mips_ce
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_dtsample_mips_ce
rem if "%bug_mips_cedll%"=="1" goto wce200_dtsample_mips_cedll
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Spanish Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Latin American Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release English UK Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release English UK Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release French Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release German Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Italian Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE MIPS) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_dtsample_mips_cedll
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\sh3;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\sh3;
rem if "%bug_sh_ce%"=="1" goto wce200_dtsample_sh_ce
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_dtsample_sh_ce
rem if "%bug_sh_cedll%"=="1" goto wce200_dtsample_sh_cedll
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Spanish Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Latin American Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release English UK Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release English UK Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release French Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release German Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Italian Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE SH3) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_dtsample_sh_cedll
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\X86em;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\X86em;
rem if "%bug_x86em_ce%"=="1" goto wce200_dtsample_x86em_ce
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_dtsample_x86em_ce
rem if "%bug_x86em_cedll%"=="1" goto wce200_dtsample_x86em_cedll
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release Spanish Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release Latin American Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release English UK Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release English UK Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release French Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release German Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release Italian Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce200 Win32 (WCE X86EM) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_dtsample_x86em_cedll
rem nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Debug Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Debug Spanish Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Debug Latin American Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Debug English UK Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Debug French Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Debug German Dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
@echo build CEtalk
cd .\..\CEtalk
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\mips;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\mips;
rem if "%bug_mips_ce%"=="1" goto wce200_cetalk_mips_ce
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\us\release\dtalk_us.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\sp\release\dtalk_sp.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\la\release\dtalk_la.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\uk\release\dtalk_uk.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\fr\release\dtalk_fr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\gr\release\dtalk_gr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\mips\it\release\dtalk_it.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_cetalk_mips_ce
rem if "%bug_mips_cedll%"=="1" goto wce200_cetalk_mips_cedll
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\us\release\dtalk_us.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release Spanish dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\sp\release\dtalk_sp.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release Latin American dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\la\release\dtalk_la.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release English UK dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\uk\release\dtalk_uk.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release English UK Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release French dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\fr\release\dtalk_fr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release German dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\gr\release\dtalk_gr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE MIPS) Release Italian dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\mips\it\release\dtalk_it.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE MIPS) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_cetalk_mips_cedll
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\sh3;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\sh3;
rem if "%bug_sh_ce%"=="1" goto wce200_cetalk_sh_ce
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\us\release\dtalk_us.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\sp\release\dtalk_sp.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\la\release\dtalk_la.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\uk\release\dtalk_uk.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\fr\release\dtalk_fr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\gr\release\dtalk_gr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\sh\it\release\dtalk_it.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_cetalk_sh_ce
rem if "%bug_sh_cedll%"=="1" goto wce200_cetalk_sh_cedll
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\us\release\dtalk_us.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release Spanish dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\sp\release\dtalk_sp.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release Latin American dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\la\release\dtalk_la.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release English UK dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\uk\release\dtalk_uk.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release English UK Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release French dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\fr\release\dtalk_fr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release German dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\gr\release\dtalk_gr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE SH3) Release Italian dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\sh\it\release\dtalk_it.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE SH3) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_cetalk_sh_cedll
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\X86em;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\X86em;
rem if "%bug_x86em_ce%"=="1" goto wce200_cetalk_x86em_ce
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\us\release\dtalk_us.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\sp\release\dtalk_sp.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\la\release\dtalk_la.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release English UK" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\uk\release\dtalk_uk.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release French" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\fr\release\dtalk_fr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release German" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\gr\release\dtalk_gr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release Italian" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_static%\x86em\it\release\dtalk_it.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_cetalk_x86em_ce
rem if "%bug_x86em_cedll%"=="1" goto wce200_cetalk_x86em_cedll
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\us\release\dtalk_us.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release Spanish dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\sp\release\\dtalk_sp.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release Latin American dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\la\release\dtalk_la.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release English UK dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\uk\release\dtalk_uk.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release English UK Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release French dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\fr\release\dtalk_fr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release German dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\gr\release\dtalk_gr.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Release Italian dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist .\%build_dll%\x86em\it\release\dtalk_it.exe echo Workspace %blddrv%%bldpath%\samplece\cetalk\cetalk.vcn wce200 Win32 (WCE X86EM) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce200_cetalk_x86em_cedll
rem nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Debug dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Debug Spanish dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Debug Latin American dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Debug English UK dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Debug French dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
rem nmake /NOLOGO /f "CEtalk.vcn" CFG="CEtalk - Win32 (WCE x86em) Debug German dll" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
cd .\..\..
:build_wce200ML
set PLATFORM=WCE200
set PATH=%VCROOT%\Common\EVC\Bin;%VCROOT%\EVC\%PLATFORM%\Bin;%path%
set INCLUDE=%DEVROOT%\%PLATFORM%\MS HPC\include;%DEVROOT%\%PLATFORM%\MS HPC\mfc\include;
@echo bulid dectalk multi language
cd .\dtalkml\src
@echo make the dynamic library versions of dectalk ML for the x86em, mips and sh3 platforms
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\mips;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\mips;
nmake /NOLOGO /f "DtalkMLCE.vcn" CFG="DTalkML - Win32 (WCE MIPS) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\build\ce\mips\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dtalkml\src\dtalkmlce.vcn wce200 Win32 (WCE MIPS) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\sh3;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\sh3;
nmake /NOLOGO /f "DtalkMLCE.vcn" CFG="DTalkML - Win32 (WCE SH3) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\build\ce\sh\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dtalkml\src\dtalkmlce.vcn wce200 Win32 (WCE SH3) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
set LIB=%DEVROOT%\%PLATFORM%\MS HPC\lib\X86em;%DEVROOT%\%PLATFORM%\MS HPC\mfc\lib\X86em;
nmake /NOLOGO /f "DtalkMLCE.vcn" CFG="DTalkML - Win32 (WCE x86em) Release" CESubsystem=windowsce,2.0 CEVersion=200 CEConfigName="H/PC Ver. 2.00"
if NOT exist ..\build\ce\x86em\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dtalkml\src\dtalkmlce.vcn wce20 Win32 (WCE X86EM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
cd .\..\..
deltree /Y .\dapi\build\%PLATFORM%
deltree /Y .\samplece\CEtalk\build\%PLATFORM%
deltree /Y .\samplece\Dtsample\build\%PLATFORM%
deltree /Y .\dtalkml\build\%PLATFORM%
mkdir .\dapi\build\%PLATFORM%
if exist .\dapi\build\cedll move .\dapi\build\cedll .\dapi\build\%PLATFORM%\
if exist .\dapi\build\cestatic move .\dapi\build\cestatic .\dapi\build\%PLATFORM%\
mkdir .\samplece\CEtalk\build\%PLATFORM%
if exist .\samplece\CEtalk\build\dll move .\samplece\CEtalk\build\dll .\samplece\CEtalk\build\%PLATFORM%\
if exist .\samplece\CEtalk\build\static move .\samplece\CEtalk\build\static .\samplece\CEtalk\build\%PLATFORM%\
mkdir .\samplece\Dtsample\build\%PLATFORM%
if exist .\samplece\Dtsample\build\dll move .\samplece\Dtsample\build\dll .\samplece\Dtsample\build\%PLATFORM%\
if exist .\samplece\Dtsample\build\static move .\samplece\Dtsample\build\static .\samplece\Dtsample\build\%PLATFORM%\
mkdir .\dtalkml\build\%PLATFORM%
if exist .\dtalkml\build\ce\mips move .\dtalkml\build\ce\mips .\dtalkml\build\%PLATFORM%
if exist .\dtalkml\build\ce\sh move .\dtalkml\build\ce\sh .\dtalkml\build\%PLATFORM%
if exist .\dtalkml\build\ce\x86em move .\dtalkml\build\ce\x86em .\dtalkml\build\%PLATFORM%
deltree /Y .\dtalkml\build\ce
if /i "%1"=="wce200" goto end
:skipce200
:build_wce211_pro
rem *****Build for MS HPC PRO *********
set PLATFORM=WCE211
set PATH=%VCROOT%\Common\EVC\Bin;%VCROOT%\EVC\%PLATFORM%\Bin;%path%
set INCLUDE=%DEVROOT%\%PLATFORM%\MS HPC PRO\include;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\include;
rem reset bug parameters
set bug_arm_ce=0
set bug_arm_cedll=0
set bug_mips_ce=0
set bug_mips_cedll=0
set bug_sh_cedll=0
set bug_sh_cedll=0
set bug_sh4_ce=0
set bug_sh4_cedll=0
set bug_x86em_ce=0
set bug_x86em_cedll=0
rem if been built once move back so we don't have to build again
if exist .\dapi\build\%PLATFORM%\mspro\cedll move .\dapi\build\%PLATFORM%\mspro\cedll .\dapi\build\cedll
if exist .\dapi\build\%PLATFORM%\mspro\cestatic move .\dapi\build\%PLATFORM%\mspro\cestatic .\dapi\build\cestatic
if exist .\samplece\CEtalk\build\%PLATFORM%\mspro\dll move .\samplece\CEtalk\build\%PLATFORM%\mspro\dll .\samplece\CEtalk\build\dll
if exist .\samplece\CEtalk\build\%PLATFORM%\mspro\static move .\samplece\CEtalk\build\%PLATFORM%\mspro\static .\samplece\CEtalk\build\static
if exist .\samplece\Dtsample\build\%PLATFORM%\mspro\dll move .\samplece\Dtsample\build\%PLATFORM%\mspro\dll .\samplece\Dtsample\build\dll
if exist .\samplece\Dtsample\build\%PLATFORM%\mspro\static move .\samplece\Dtsample\build\%PLATFORM%\mspro\static .\samplece\Dtsample\build\static
if exist .\samplece\Mailread\build\%PLATFORM%\mspro\dll move .\samplece\Mailread\build\%PLATFORM%\mspro\dll .\samplece\Mailread\build\dll
if exist .\samplece\Mailread\build\%PLATFORM%\mspro\static move .\samplece\Mailread\build\%PLATFORM%\mspro\static .\samplece\Mailread\build\static
rem if exist .\samplece\windic\build\%PLATFORM%\mspro\dll move .\samplece\windic\build\%PLATFORM%\mspro\dll .\samplece\windic\build\dll
rem if exist .\samplece\windic\build\%PLATFORM%\mspro\static move .\samplece\windic\build\%PLATFORM%\mspro\static .\samplece\windic\build\static
if exist .\dtalkml\build\%PLATFORM%\mspro move .\dtalkml\build\%PLATFORM%\mspro .\dtalkml\build\ce
rem set paths for DECtalk CE build WCE211
cd .\dapi\src
@echo make the static and dynamic library version of dectalk for the arm platform
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\ARM;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\arm;
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE ARM) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\arm\us\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE ARM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\arm\us\release\dtstatic.lib set bug_arm_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE ARM) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\arm\sp\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE ARM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\arm\sp\release\dtstatic.lib set bug_arm_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE ARM) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\arm\la\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE ARM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\arm\la\release\dtstatic.lib set bug_arm_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE ARM) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\arm\la\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE ARM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\arm\la\release\dtstatic.lib set bug_arm_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE ARM) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\arm\fr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE ARM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\arm\fr\release\dtstatic.lib set bug_arm_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE ARM) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\arm\gr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE ARM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\arm\gr\release\dtstatic.lib set bug_arm_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE ARM) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\arm\it\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE ARM) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\arm\it\release\dtstatic.lib set bug_arm_ce=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE ARM) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\arm\us\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE ARM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\arm\us\release\dectalk.dll set bug_arm_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE ARM) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\arm\sp\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE ARM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\arm\sp\release\dectalk.dll set bug_arm_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE ARM) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\arm\la\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE ARM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\arm\la\release\dectalk.dll set bug_arm_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE ARM) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\arm\uk\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE ARM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\arm\uk\release\dectalk.dll set bug_arm_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE ARM) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\arm\fr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE ARM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\arm\fr\release\dectalk.dll set bug_arm_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE ARM) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\arm\gr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE ARM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\arm\gr\release\dectalk.dll set bug_arm_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE ARM) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\arm\it\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE ARM) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\arm\it\release\dectalk.dll set bug_arm_cedll=1
@echo make the static and dynamic library version of dectalk for the mips platform
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\MIPS;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\mips;
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\mips\us\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE MIPS) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\us\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\mips\sp\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE MIPS) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\sp\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\mips\la\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE MIPS) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\la\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\mips\uk\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE MIPS) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\uk\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\mips\fr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE MIPS) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\fr\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\mips\gr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE MIPS) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\gr\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE MIPS) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\mips\it\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE MIPS) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\mips\it\release\dtstatic.lib set bug_mips_ce=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\mips\us\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE MIPS) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\us\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\mips\sp\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE MIPS) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\sp\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\mips\la\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE MIPS) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\la\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\mips\uk\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE MIPS) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\uk\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\mips\fr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE MIPS) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\fr\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\mips\gr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE MIPS) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\gr\release\dectalk.dll set bug_mips_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE MIPS) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\mips\it\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE MIPS) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\mips\it\release\dectalk.dll set bug_mips_cedll=1
@echo make the static and dynamic library version of dectalk for the sh3 platform
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\SH3;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\sh3;
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh\us\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH3) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\us\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh\sp\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH3) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\sp\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh\la\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH3) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\la\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh\uk\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH3) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\uk\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh\fr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH3) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\fr\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh\gr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH3) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\gr\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH3) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh\it\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH3) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh\it\release\dtstatic.lib set bug_sh_ce=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh\us\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH3) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\us\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh\sp\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH3) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\sp\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh\la\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH3) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\la\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh\uk\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH3) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\uk\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh\fr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH3) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\fr\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh\gr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH3) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\gr\release\dectalk.dll set bug_sh_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH3) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh\it\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH3) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh\it\release\dectalk.dll set bug_sh_cedll=1
@echo make the static and dynamic library version of dectalk for the sh4 platform
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\SH4;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\sh4;
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH4) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh4\us\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH4) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh4\us\release\dtstatic.lib set bug_sh4_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH4) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh4\sp\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH4) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh4\sp\release\dtstatic.lib set bug_sh4_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH4) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh4\la\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH4) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh4\la\release\dtstatic.lib set bug_sh4_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH4) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh4\uk\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH4) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh4\uk\release\dtstatic.lib set bug_sh4_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH4) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh4\fr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH4) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh4\fr\release\dtstatic.lib set bug_sh4_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH4) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh4\gr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH4) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh4\gr\release\dtstatic.lib set bug_sh4_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE SH4) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\sh4\it\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE SH4) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\sh4\it\release\dtstatic.lib set bug_sh4_ce=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH4) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh4\us\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH4) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh4\us\release\dectalk.dll set bug_sh4_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH4) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh4\sp\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH4) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh4\sp\release\dectalk.dll set bug_sh4_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH4) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh4\la\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH4) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh4\la\release\dectalk.dll set bug_sh4_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH4) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh4\uk\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH4) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh4\uk\release\dectalk.dll set bug_sh4_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH4) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh4\fr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH4) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh4\fr\release\dectalk.dll set bug_sh4_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH4) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh4\gr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH4) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh4\gr\release\dectalk.dll set bug_sh4_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE SH4) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\sh4\it\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE SH4) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\sh4\it\release\dectalk.dll set bug_sh4_cedll=1
@echo make the static and dynamic library versions of dectalk for the x86em platform
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\X86em;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\X86em;
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\x86em\us\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE X86EM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\us\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\x86em\sp\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE X86EM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\sp\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\x86em\la\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE X86EM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\la\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\x86em\uk\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE X86EM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\uk\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\x86em\fr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE X86EM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\fr\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\x86em\gr\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE X86EM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\gr\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "ce.vcn" CFG="CE - Win32 (WCE x86em) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_static%\x86em\it\release\dtstatic.lib echo Workspace %blddrv%%bldpath%\dapi\src\ce.vcn wce211 Pro Win32 (WCE X86EM) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_static%\x86em\it\release\dtstatic.lib set bug_x86em_ce=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\x86em\us\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE X86EM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\us\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\x86em\sp\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE X86EM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\sp\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\x86em\la\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE X86EM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\la\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\x86em\uk\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE X86EM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\uk\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\x86em\fr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE X86EM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\fr\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\x86em\gr\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE X86EM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\gr\release\dectalk.dll set bug_x86em_cedll=1
nmake /NOLOGO /f "cedll.vcn" CFG="cedll - Win32 (WCE x86em) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist ..\%build_wce_dll%\x86em\it\release\dectalk.dll echo Workspace %blddrv%%bldpath%\dapi\src\cedll.vcn wce211 Pro Win32 (WCE X86EM) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
if NOT exist ..\%build_wce_dll%\x86em\it\release\dectalk.dll set bug_x86em_cedll=1
@echo build DTSample
cd .\..\..\samplece\Dtsample
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\ARM;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\ARM;
rem if "%bug_arm_ce%"=="1" goto wce211_pro_dtsample_arm_ce
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\arm\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\arm\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\arm\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\arm\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\arm\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\arm\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\arm\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce211_pro_dtsample_arm_ce
rem if "%bug_arm_cedll%"=="1" goto wce211_pro_dtsample_arm_cedll
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\arm\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release Spanish dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\arm\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release Latin American dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\arm\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release English UK dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\arm\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release English Uk Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release French dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\arm\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release German dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\arm\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE ARM) Release Italian dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\arm\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE ARM) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce211_pro_dtsample_arm_cedll
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\MIPS;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\MIPS;
rem if "%bug_mips_ce%"=="1" goto wce211_pro_dtsample_mips_ce
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\mips\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\mips\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\mips\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\mips\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\mips\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\mips\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\mips\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce211_pro_dtsample_mips_ce
rem if "%bug_mips_cedll%"=="1" goto wce211_pro_dtsample_mips_cedll
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\mips\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Spanish Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\mips\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Latin American Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\mips\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release English UK Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\mips\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release English UK Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release French Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\mips\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release German Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\mips\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE MIPS) Release Italian Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\mips\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE MIPS) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce211_pro_dtsample_mips_cedll
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\SH3;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\SH3;
rem if "%bug_sh_ce%"=="1" goto wce211_pro_dtsample_sh_ce
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce211_pro_dtsample_sh_ce
rem if "%bug_sh_cedll%"=="1" goto wce211_pro_dtsample_sh_cedll
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Spanish Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Latin American Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release English UK Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release English UK Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release French Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release German Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH3) Release Italian Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH3) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce211_pro_dtsample_sh_cedll
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\SH4;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\SH4;
rem if "%bug_sh4_ce%"=="1" goto wce211_pro_dtsample_sh4_ce
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh4\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh4\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh4\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh4\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh4\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh4\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release Italian" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\sh4\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release Italian not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce211_pro_dtsample_sh4_ce
rem if "%bug_sh4_cedll%"=="1" goto wce211_pro_dtsample_sh4_cedll
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh4\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release Spanish Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh4\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release Spanish Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release Latin American Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh4\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release Latin American Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release English UK Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh4\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release English UK Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release French Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh4\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release French Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release German Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh4\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release German Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE SH4) Release Italian Dll" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_dll%\sh4\it\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE SH4) Release Italian Dll not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
:wce211_pro_dtsample_sh4_cedll
set LIB=%DEVROOT%\%PLATFORM%\MS HPC PRO\lib\X86em;%DEVROOT%\%PLATFORM%\MS HPC PRO\mfc\lib\X86em;
rem if "%bug_x86em_cedll%"=="1" goto wce211_pro_dtsample_x86em_ce
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\x86em\us\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE X86EM) Release not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release Spanish" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\x86em\sp\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE X86EM) Release Spanish not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release Latin American" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\x86em\la\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE X86EM) Release Latin American not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release English UK" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\x86em\uk\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE X86EM) Release English UK not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release French" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\x86em\fr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE X86EM) Release French not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log
nmake /NOLOGO /f "Dtsample.vcn" CFG="Dtsample - Win32 (WCE x86em) Release German" CESubsystem=windowsce,2.0 CEVersion=211 CEConfigName="H/PC Pro 2.11"
if NOT exist .\%build_static%\x86em\gr\release\dtsample.exe echo Workspace %blddrv%%bldpath%\samplece\dtsample\dtsample.vcn wce211 Pro Win32 (WCE X86EM) Release German not build >> %blddrv%%bldpath%\build_log\errors\win_ce%index%.log