File: m

package info (click to toggle)
pycxx 5.4.1-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 660 kB
  • ctags: 1,292
  • sloc: cpp: 2,333; python: 205; makefile: 80; ansic: 22; sh: 9
file content (12 lines) | stat: -rwxr-xr-x 226 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
VERSION=$1
shift

case `uname -s` in
Linux)		MAKEFILE=example_linux_py${VERSION}.mak;;
FreeBSD)	MAKEFILE=example_freebsd_py${VERSION}.mak;;
*)		echo Unsupported OS `uname -s`
		exit
esac

make -f ${MAKEFILE} $* 2>&1