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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
htmldir = ${datadir}/doc/${PACKAGE}-${SLURM_VERSION_STRING}/html
man1_MANS = \
sacct.1 \
sacctmgr.1 \
salloc.1 \
sattach.1 \
sbatch.1 \
sbcast.1 \
scancel.1 \
scontrol.1 \
scrun.1 \
scrontab.1 \
sdiag.1 \
sinfo.1 \
sprio.1 \
squeue.1 \
sreport.1 \
srun.1 \
sshare.1 \
sstat.1 \
strigger.1
if BUILD_HDF5
man1_MANS += sh5util.1
endif
if BUILD_SVIEW
man1_MANS += sview.1
endif
if HAVE_MAN2HTML
html_DATA = \
sacct.html \
sacctmgr.html \
salloc.html \
sattach.html \
sbatch.html \
sbcast.html \
scancel.html \
scontrol.html \
scrun.html \
scrontab.html \
sdiag.html \
sinfo.html \
sprio.html \
squeue.html \
sreport.html \
srun.html \
sshare.html \
sstat.html \
strigger.html
if BUILD_HDF5
html_DATA += sh5util.html
endif
if BUILD_SVIEW
html_DATA += sview.html
endif
MOSTLYCLEANFILES = ${html_DATA}
SUFFIXES = .html
.1.html:
`dirname $<`/../man2html.py @SLURM_MAJOR@.@SLURM_MINOR@ $(srcdir)/../../html/header.txt $(srcdir)/../../html/footer.txt $<
endif
|