Changeset 2484

Show
Ignore:
Timestamp:
12/14/09 16:28:11
Author:
douglm
Message:

Add monitor to the bw build script

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/quickstart/linux/bw

    r2370 r2484  
    4141  echo "" 
    4242  echo "   PROJECT optionally defines the package to build and is none or more of" 
    43   echo "     -carddav     Target is for the CardDAV build, otherwise it's a calendar build" 
     43  echo "     -carddav     Target is for the CardDAV build" 
     44  echo "     -monitor     Target is for the bedework monitor application" 
    4445  echo "     -naming      Target is for the abstract naming api" 
    4546  echo "     The default is a calendar build" 
     
    9192bedework= 
    9293naming= 
     94monitor= 
    9395 
    9496if [ "$1" = "" ] ; then 
     
    141143      shift 
    142144      ;; 
     145    -monitor) 
     146      monitor="yes" 
     147      pkgdefault= 
     148      shift 
     149      ;; 
    143150    -naming) 
    144151      naming="yes" 
     
    188195fi 
    189196 
     197if [ "$monitor" != "" ] ; then 
     198  cd $QUICKSTART_HOME/MonitorApp 
     199fi 
     200 
    190201if [ "$naming" != "" ] ; then 
    191202  cd $QUICKSTART_HOME/bwnaming