source: Dev/trunk/src/client/dojox/mobile/build/build.sh

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

  • Property svn:executable set to *
File size: 713 bytes
RevLine 
[483]1#!/bin/sh
2
3# Build script for dojox.mobile
4
5if [ $# -eq 0 ]; then
6  echo 'Usage: build separate|single'
7  echo '  separate  Create mobile.js that includes only dojox.mobile'
8  echo '  single    Create a single dojo.js layer that includes dojox.mobile'
9  exit 1
10fi
11
12#optimize=shrinksafe
13optimize=closure
14profile=mobile
15dir=release-mobile-separate
16#standalone=standaloneScrollable=true
17if [ "$1" == "single" ]; then
18  profile=mobile-all
19fi
20if [ "$1" == "single" ]; then
21  dir=release-mobile-single
22fi
23shift 1
24
25cd ../../../util/buildscripts
26
27./build.sh profile=$profile action=release optimize=$optimize layerOptimize=$optimize cssOptimize=comments releaseDir=../../$dir/ $standalone $*
28
29cd ../../dojox/mobile/build
Note: See TracBrowser for help on using the repository browser.