blob: 01bd595b1a221fbcc91a04bee2bdf7d292254a11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
PREFIX = /usr
MANPREFIX = $(PREFIX)/share/man
# It is important that PREFIX is properly set when building, not just installing
# In percent of one CPU (integer)
COREUP_THRESHOLD_CPU = 95
COREDOWN_THRESHOLD_CPU = 50
# In multiples of the update interval (integer)
COREUP_THRESHOLD_TIME = 2
COREDOWN_THRESHOLD_TIME = 2
COREUP_COOLDOWN = 4
COREDOWN_COOLDOWN = 4
# Update interval (integer)
DAEMON_INTERVAL_SEC = 1
DAEMON_INTERVAL_NSEC = 0
CC = c99
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE
CFLAGS =
LDFLAGS =
|