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
|
# Makefile.am --- automake input file for systemtap man pages
## process this file with automake to produce Makefile.in
SUBDIRS = cs
AUTOMAKE_OPTIONS = no-dist foreign subdir-objects
man_MANS = stapprobes.3stap stapfuncs.3stap stapvars.3stap stapex.3stap \
dtrace.1 stap-merge.1 stappaths.7 stapsh.8 systemtap-service.8 stapref.1
# NB: this doesn't work, apparently because make doesn't like
# file names with :: in them, misinterpreting them as some kind
# of make rule.
#
# man7_MANS = error::reporting.7stap error::pass4.7stap
install-data-local:
$(MKDIR_P) $(DESTDIR)$(man7dir)
for f in $(srcdir)/*.7stap; do \
$(INSTALL_DATA) "$$f" "$(DESTDIR)$(man7dir)"; \
done
if BUILD_TRANSLATOR
man_MANS += stap.1 stap-prep.1 stap-report.1
endif
if HAVE_NSS
if BUILD_SERVER
man_MANS += stap-server.8
endif
endif
if BUILD_VIRT
man_MANS += stapvirt.1
endif
if HAVE_MONITOR_LIBS
man_MANS += stap-jupyter.1
endif
|