File: COMPILE.md

package info (click to toggle)
qstat 2.17-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,220 kB
  • sloc: ansic: 24,706; makefile: 86; perl: 78; sh: 62
file content (43 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (2)
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
```