File: Makefile.am

package info (click to toggle)
systemtap 5.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 47,964 kB
  • sloc: cpp: 80,838; ansic: 54,757; xml: 49,725; exp: 43,665; sh: 11,527; python: 5,003; perl: 2,252; tcl: 1,312; makefile: 1,006; javascript: 149; lisp: 105; awk: 101; asm: 91; java: 70; sed: 16
file content (39 lines) | stat: -rw-r--r-- 917 bytes parent folder | download | duplicates (2)
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