summaryrefslogtreecommitdiffstats
path: root/schedutils/Makefile.am
blob: 8b82c85c44d6479a0fa6b2b08306a7b12a596303 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include $(top_srcdir)/config/include-Makefile.am

srcs_common = $(top_srcdir)/lib/strutils.c $(top_srcdir)/lib/procutils.c

usrbin_exec_PROGRAMS = chrt
dist_man_MANS = chrt.1

chrt_SOURCES = chrt.c $(srcs_common)

if BUILD_IONICE
usrbin_exec_PROGRAMS += ionice
ionice_SOURCES = ionice.c $(srcs_common)
dist_man_MANS += ionice.1
endif

if BUILD_TASKSET
usrbin_exec_PROGRAMS += taskset
taskset_SOURCES = taskset.c $(top_srcdir)/lib/cpuset.c $(srcs_common)
dist_man_MANS += taskset.1
endif