michael@0: #!/bin/bash michael@0: # Builds all the reference mars michael@0: michael@0: if [ -f "ref.mar" ]; then michael@0: rm "ref.mar" michael@0: fi michael@0: if [ -f "ref-mac.mar" ]; then michael@0: rm "ref-mac.mar" michael@0: fi michael@0: michael@0: ../make_incremental_update.sh ref.mar `pwd`/from `pwd`/to michael@0: ../make_incremental_update.sh ref-mac.mar `pwd`/from-mac `pwd`/to-mac michael@0: michael@0: if [ -f "product-1.0.lang.platform.complete.mar" ]; then michael@0: rm "product-1.0.lang.platform.complete.mar" michael@0: fi michael@0: if [ -f "product-2.0.lang.platform.complete.mar" ]; then michael@0: rm "product-2.0.lang.platform.complete.mar" michael@0: fi michael@0: if [ -f "product-2.0.lang.mac.complete.mar" ]; then michael@0: rm "product-2.0.lang.mac.complete.mar" michael@0: fi michael@0: michael@0: ./make_full_update.sh product-1.0.lang.platform.complete.mar "`pwd`/from" michael@0: ./make_full_update.sh product-2.0.lang.platform.complete.mar "`pwd`/to" michael@0: ./make_full_update.sh product-1.0.lang.mac.complete.mar "`pwd`/from-mac" michael@0: ./make_full_update.sh product-2.0.lang.mac.complete.mar "`pwd`/to-mac"