Admin/bash_process/build
author paulson <lp15@cam.ac.uk>
Wed, 09 Aug 2017 13:41:23 +0200
changeset 66387 5db8427fdfd3
parent 62566 fe02dcee9493
child 66691 a8703e8ee1d3
permissions -rwxr-xr-x
more cleanup of fundamental_theorem_of_calculus_interior

#!/usr/bin/env bash
#
# Multi-platform build script

THIS="$(cd "$(dirname "$0")"; pwd)"
PRG="$(basename "$0")"


# diagnostics

function usage()
{
  echo
  echo "Usage: $PRG TARGET"
  echo
  exit 1
}

function fail()
{
  echo "$1" >&2
  exit 2
}


# command line args

[ "$#" -eq 0 ] && usage
TARGET="$1"; shift

[ "$#" -eq 0 ] || usage


# main

mkdir -p "$TARGET"

case "$TARGET" in
  x86_64-linux | x86_64-darwin)
    cc -Wall -m64 bash_process.c -o "$TARGET/bash_process"
    ;;
  x86-linux | x86-darwin)
    cc -Wall -m32 bash_process.c -o "$TARGET/bash_process"
    ;;
  x86-cygwin)
    cc -Wall bash_process.c -o "$TARGET/bash_process.exe"
    ;;
  *)
    cc -Wall bash_process.c -o "$TARGET/bash_process"
    ;;
esac