File: Makefile.am

package info (click to toggle)
ceph 10.2.11-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 84,660 kB
  • sloc: cpp: 851,974; ansic: 54,245; python: 45,589; sh: 30,008; java: 20,516; asm: 10,148; perl: 8,435; makefile: 5,956; php: 909
file content (31 lines) | stat: -rw-r--r-- 691 bytes parent folder | download
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
AUTOMAKE_OPTIONS = gnu

EXTRA_DIST = conf.py ceph_selinux.8 CMakeLists.txt

dist_man_MANS = 

if WITH_MAN_PAGES
if ENABLE_CLIENT
include Makefile-client.am
endif

if ENABLE_SERVER
include Makefile-server.am
endif

# prevent `make` from running in parallel, sphinx runs better in batch mode.
.PHONY: sphinx-build.stamp

$(dist_man_MANS): sphinx-build.stamp

# in a tree populated from dist tarball, the $(top_srcdir)/doc is not included
sphinx-build.stamp:
	if [ -d $(top_srcdir)/doc/man ] ; then \
		${SPHINX_BUILD} -b man -t man -d doctrees -c $(top_srcdir)/man $(top_srcdir)/doc/man $(top_builddir)/man; \
	fi

clean-local:
	@rm -rf doctrees

MAINTAINERCLEANFILES = $(dist_man_MANS)
endif