1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# Compilation instructions for qStat
## Linux and other GNU systems
### Build
```shall
./configure && make
```
### Install
To install qstat run
```shell
make install
```
### Configuration
To see which configuration parameters can be tweaked, run
```shell
./configure --help
```
If you want to compile from GIT you need to first install `autoconf` and `automake`, then run
```shell
./autogen.sh
```
## Windows
Release build
```shell
nmake /f Makefile.noauto windows
```
Debug build
```shell
nmake /f Makefile.noauto windows_debug
```
## Solaris
```shell
make -f Makefile.noauto solaris
```
## HPUX
```shell
make -f Makefile.noauto hpux
```
|