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
CommitLineData
e4451f11
JH
1# Time-stamp: <01/08/01 21:03:25 keuchel@w2k>
2#
3# rebuild all perl targets
4
5machines="
6wince-arm-hpc-wce300
7wince-arm-hpc-wce211
8wince-sh3-hpc-wce211
9wince-mips-hpc-wce211
10wince-mips-hpc-wce200
11wince-sh3-hpc-wce200
12wince-arm-pocket-wce300
13wince-mips-pocket-wce300
14wince-sh3-pocket-wce300
15wince-x86em-pocket-wce300
16wince-sh3-palm-wce211
17wince-mips-palm-wce211
18wince-x86em-palm-wce211
19"
20
21for 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
28done
29