Changeset 847
- Timestamp:
- Aug 21, 2011, 4:04:30 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build/bitten.xml
r846 r847 2 2 xmlns:svn="http://bitten.edgewall.org/tools/svn" 3 3 xmlns:c="http://bitten.edgewall.org/tools/c"> 4 <step id="init" description="Initialise builder">5 <sh:exec file="sh" args="-c '6 if test ${platform} = ppu-ps3; then7 echo ps3; else echo not ps3; fi8 '"/>9 <sh:exec file="exit" args="1"/>10 </step>11 4 <step id="checkout" description="Checkout source from repository"> 12 5 <svn:checkout url="svn://svn.zoy.org/lolengine/" … … 15 8 <step id="bootstrap" description="Bootstrap build system"> 16 9 <sh:exec file="sh" args="-c ' 17 case ${platform} in ;10 case ${platform} in 18 11 android-arm|ios-arm|ps3-ppu) : ; ;; 19 12 *) ./bootstrap ;; … … 23 16 <step id="configure" description="Configure tree"> 24 17 <sh:exec file="sh" args="-c ' 25 case ${platform} in ;18 case ${platform} in 26 19 android-arm|ios-arm|ps3-ppu) : ; ;; 27 20 *) ./configure ;; … … 32 25 <step id="build" description="Build tree"> 33 26 <sh:exec file="sh" args="-c ' 34 case ${platform} in ;27 case ${platform} in 35 28 android-arm) 36 29 cd monsterz/android; … … 52 45 <step id="test" description="Run tests"> 53 46 <sh:exec file="sh" args="-c ' 54 case ${platform} in ;47 case ${platform} in 55 48 android-arm|ios-arm|ps3-ppu) : ; ;; 56 49 *) make check; ;; … … 60 53 <step id="clean" description="Clean tree"> 61 54 <sh:exec file="sh" args="-c ' 62 case ${platform} in ;55 case ${platform} in 63 56 android-arm|ios-arm) : ; ;; 64 57 *) make distclean; ;;
Note: See TracChangeset
for help on using the changeset viewer.