File: Makefile.am

package info (click to toggle)
slurm-wlm 25.05.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 51,772 kB
  • sloc: ansic: 546,579; exp: 61,212; python: 20,435; sh: 10,326; javascript: 6,528; makefile: 4,222; perl: 3,717; pascal: 131
file content (42 lines) | stat: -rw-r--r-- 808 bytes parent folder | download | duplicates (3)
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
htmldir = ${datadir}/doc/${PACKAGE}-${SLURM_VERSION_STRING}/html

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

if HAVE_MAN2HTML

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

MOSTLYCLEANFILES = ${html_DATA}

SUFFIXES = .html

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

endif