source: gs3-extensions/mars-src/trunk/devel/CASCADE-MAKE.sh

Last change on this file was 36803, checked in by davidb, 19 months ago

YASM added in to the cascade-compile sequence; NODEJS take out, at takes hours to compile, and can be more easily done now using ./get-selfcontained-nodejs.sh in the ext-cli diretory

  • Property svn:executable set to *
File size: 410 bytes
Line 
1#!/bin/bash
2
3source ../cascade-make/lib/cascade-lib.bash GEXT_MARS .. $*
4
5if [ -z "$GEXT_MARS_DEVEL" ] ; then
6 cd .. && source ./devel.bash
7fi
8
9#for d in ZLIB OPENSSL CMAKE NODEJS NASM YASM ; do
10for d in ZLIB OPENSSL CMAKE NASM YASM ; do
11 echo " Running CASCADE-MAKE/$d.sh"
12
13 ./CASCADE-MAKE/$d.sh $*
14
15 if [ $? != 0 ] ; then
16 echo "Error encountered running CASCADE-MAKE/$d.sh"
17 exit 1
18 fi
19done
Note: See TracBrowser for help on using the repository browser.