File: Makefile.am

package info (click to toggle)
slurm-wlm 22.05.8-4%2Bdeb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 48,492 kB
  • sloc: ansic: 475,246; exp: 69,020; sh: 8,862; javascript: 6,528; python: 6,444; makefile: 4,185; perl: 4,069; pascal: 131
file content (44 lines) | stat: -rw-r--r-- 853 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
44
htmldir = ${datadir}/doc/${PACKAGE}-${SLURM_VERSION_STRING}/html

man5_MANS = \
	acct_gather.conf.5 \
	burst_buffer.conf.5 \
	cgroup.conf.5 \
	ext_sensors.conf.5 \
	gres.conf.5 \
	helpers.conf.5 \
	job_container.conf.5 \
	knl.conf.5 \
	mpi.conf.5 \
	nonstop.conf.5 \
	oci.conf.5 \
	slurm.conf.5 \
	slurmdbd.conf.5 \
	topology.conf.5

if HAVE_MAN2HTML

html_DATA = \
	acct_gather.conf.html \
	burst_buffer.conf.html \
	cgroup.conf.html \
	ext_sensors.conf.html \
	gres.conf.html \
	helpers.conf.html \
	job_container.conf.html \
	knl.conf.html \
	mpi.conf.html \
	nonstop.conf.html \
	oci.conf.html \
	slurm.conf.html \
	slurmdbd.conf.html \
	topology.conf.html

MOSTLYCLEANFILES = ${html_DATA}

SUFFIXES = .html

.5.html:
	`dirname $<`/../man2html.py @SLURM_MAJOR@.@SLURM_MINOR@ $(srcdir)/../../html/header.txt $(srcdir)/../../html/footer.txt $<

endif