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
|