forked from Surachai-kent/util-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakemodule.am
More file actions
31 lines (28 loc) · 881 Bytes
/
Makemodule.am
File metadata and controls
31 lines (28 loc) · 881 Bytes
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
if BUILD_CHRT
usrbin_exec_PROGRAMS += chrt
MANPAGES += schedutils/chrt.1
dist_noinst_DATA += schedutils/chrt.1.adoc
chrt_SOURCES = schedutils/chrt.c schedutils/sched_attr.h
chrt_LDADD = $(LDADD) libcommon.la
endif
if BUILD_IONICE
usrbin_exec_PROGRAMS += ionice
MANPAGES += schedutils/ionice.1
dist_noinst_DATA += schedutils/ionice.1.adoc
ionice_SOURCES = schedutils/ionice.c
ionice_LDADD = $(LDADD) libcommon.la
endif
if BUILD_TASKSET
usrbin_exec_PROGRAMS += taskset
MANPAGES += schedutils/taskset.1
dist_noinst_DATA += schedutils/taskset.1.adoc
taskset_SOURCES = schedutils/taskset.c
taskset_LDADD = $(LDADD) libcommon.la
endif
if BUILD_UCLAMPSET
usrbin_exec_PROGRAMS += uclampset
MANPAGES += schedutils/uclampset.1
dist_noinst_DATA += schedutils/uclampset.1.adoc
uclampset_SOURCES = schedutils/uclampset.c schedutils/sched_attr.h
uclampset_LDADD = $(LDADD) libcommon.la
endif