This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
AUTHORS update.
[perl5.git] / wince / xbuildall.ksh
1 # Time-stamp: <01/08/01 21:03:25 keuchel@w2k>
2 #
3 # rebuild all perl targets
4
5 machines="
6 wince-arm-hpc-wce300
7 wince-arm-hpc-wce211
8 wince-sh3-hpc-wce211
9 wince-mips-hpc-wce211
10 wince-mips-hpc-wce200
11 wince-sh3-hpc-wce200
12 wince-arm-pocket-wce300
13 wince-mips-pocket-wce300
14 wince-sh3-pocket-wce300
15 wince-x86em-pocket-wce300
16 wince-sh3-palm-wce211
17 wince-mips-palm-wce211
18 wince-x86em-palm-wce211
19 "
20
21 for mach in $machines; do
22   mflags="-f makefile.ce MACHINE=$mach"
23   echo "Calling nmake for $mach..."
24   nmake $mflags clean
25   nmake $mflags all
26   nmake $mflags all dlls || exit 1
27   nmake $mflags makedist
28 done
29