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 (28 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (5)
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
htmldir = ${datadir}/doc/${PACKAGE}-${SLURM_VERSION_STRING}/html

man8_MANS = \
	sackd.8 \
	slurmctld.8 \
	slurmd.8 \
	slurmdbd.8 \
	slurmrestd.8 \
	slurmstepd.8

if HAVE_MAN2HTML

html_DATA = \
	sackd.html \
	slurmctld.html \
	slurmd.html \
	slurmdbd.html \
	slurmrestd.html \
	slurmstepd.html

MOSTLYCLEANFILES = ${html_DATA}

SUFFIXES = .html

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

endif