blob: dc57b246ef51c342ca6b749233ca2ac21a9ce56b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/ksh
#
# invoke with -n as the first argument to get this script to tell
# you what it would do without doing anything
#
./Configure $*
./Compile $*
./Install $*
./Package $*
|