40f8cdbcabeb28d59892e99fd5b6b18e750d1d79
[p5sagit/p5-mst-13.2.git] / wince / xbuildall.ksh
1 # Time-stamp: <01/08/01 21:03:25 keuchel@w2k>\r
2 #\r
3 # rebuild all perl targets\r
4 \r
5 machines="\r
6 wince-arm-hpc-wce300\r
7 wince-arm-hpc-wce211\r
8 wince-sh3-hpc-wce211\r
9 wince-mips-hpc-wce211\r
10 wince-mips-hpc-wce200\r
11 wince-sh3-hpc-wce200\r
12 wince-arm-pocket-wce300\r
13 wince-mips-pocket-wce300\r
14 wince-sh3-pocket-wce300\r
15 wince-x86em-pocket-wce300\r
16 wince-sh3-palm-wce211\r
17 wince-mips-palm-wce211\r
18 wince-x86em-palm-wce211\r
19 "\r
20 \r
21 for mach in $machines; do\r
22   mflags="-f makefile.ce MACHINE=$mach"\r
23   echo "Calling nmake for $mach..."\r
24   nmake $mflags clean\r
25   nmake $mflags all\r
26   nmake $mflags all dlls || exit 1\r
27   nmake $mflags makedist\r
28 done\r
29 \r