~ubuntu-branches/ubuntu/breezy/pysvn/breezy

« back to all changes in this revision

Viewing changes to Import/pycxx_5_3_4/m

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2005-09-08 05:13:33 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050908051333-qgsa2rksrb4az1h4
Tags: 1.3.0-1
Package from release tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
VERSION=$1
 
3
shift
 
4
 
 
5
case `uname -s` in
 
6
Linux)          MAKEFILE=example_linux_py${VERSION}.mak;;
 
7
FreeBSD)        MAKEFILE=example_freebsd_py${VERSION}.mak;;
 
8
*)              echo Unsupported OS `uname -s`
 
9
                exit
 
10
esac
 
11
 
 
12
make -f ${MAKEFILE} $* 2>&1