File: buildAllExamples.sh

package info (click to toggle)
irrlicht 1.7.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 32,124 kB
  • ctags: 44,051
  • sloc: cpp: 137,592; ansic: 3,232; makefile: 801; sh: 16; sed: 11
file content (8 lines) | stat: -rw-r--r-- 159 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
#! /bin/bash
[ -z $1 ] || TARGET=$1
[ -z $TARGET ] && TARGET=all
for i in [012]* Demo; do
  echo "Building $i";
  pushd $i && make clean $TARGET;
  popd;
done