Mercurial > hg > aimc
view experiments/scripts/aimc/build_aimc.sh @ 136:4abed4cf1e87
- Fix bug where the fram period wasn't propagating to the output file.
author | tom@acousticscale.org |
---|---|
date | Tue, 26 Oct 2010 16:46:14 +0000 |
parents | 9416e88d7c56 |
children | f75123cf39ce |
line wrap: on
line source
#!/bin/bash # Set up AIM-C on an Amazon EC2 instance. A useful reference for building. set -e set -u AIMC_DIR=$1 PREV_DIR=`pwd` mkdir -p $AIMC_DIR cd $AIMC_DIR svn checkout http://aimc.googlecode.com/svn/trunk/ aimc-read-only cd aimc-read-only scons cd .. export PATH=$PATH:$AIMC_DIR/aimc-read-only/build/posix-release/ touch $AIMC_DIR/.aimc_build_success cd $PREV_DIR