Blame view

kernel/linux-imx6_3.14.28/tools/perf/Documentation/Makefile 9.63 KB
6b13f685e   김민수   BSP 최초 추가
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
  include ../../scripts/Makefile.include
  include ../config/utilities.mak
  
  MAN1_TXT= \
  	$(filter-out $(addsuffix .txt, $(ARTICLES) $(SP_ARTICLES)), \
  		$(wildcard perf-*.txt)) \
  	perf.txt
  MAN5_TXT=
  MAN7_TXT=
  
  MAN_TXT = $(MAN1_TXT) $(MAN5_TXT) $(MAN7_TXT)
  _MAN_XML=$(patsubst %.txt,%.xml,$(MAN_TXT))
  _MAN_HTML=$(patsubst %.txt,%.html,$(MAN_TXT))
  
  MAN_XML=$(addprefix $(OUTPUT),$(_MAN_XML))
  MAN_HTML=$(addprefix $(OUTPUT),$(_MAN_HTML))
  
  ARTICLES =
  # with their own formatting rules.
  SP_ARTICLES =
  API_DOCS = $(patsubst %.txt,%,$(filter-out technical/api-index-skel.txt technical/api-index.txt, $(wildcard technical/api-*.txt)))
  SP_ARTICLES += $(API_DOCS)
  SP_ARTICLES += technical/api-index
  
  _DOC_HTML = $(_MAN_HTML)
  _DOC_HTML+=$(patsubst %,%.html,$(ARTICLES) $(SP_ARTICLES))
  DOC_HTML=$(addprefix $(OUTPUT),$(_DOC_HTML))
  
  _DOC_MAN1=$(patsubst %.txt,%.1,$(MAN1_TXT))
  _DOC_MAN5=$(patsubst %.txt,%.5,$(MAN5_TXT))
  _DOC_MAN7=$(patsubst %.txt,%.7,$(MAN7_TXT))
  
  DOC_MAN1=$(addprefix $(OUTPUT),$(_DOC_MAN1))
  DOC_MAN5=$(addprefix $(OUTPUT),$(_DOC_MAN5))
  DOC_MAN7=$(addprefix $(OUTPUT),$(_DOC_MAN7))
  
  # Make the path relative to DESTDIR, not prefix
  ifndef DESTDIR
  prefix?=$(HOME)
  endif
  bindir?=$(prefix)/bin
  htmldir?=$(prefix)/share/doc/perf-doc
  pdfdir?=$(prefix)/share/doc/perf-doc
  mandir?=$(prefix)/share/man
  man1dir=$(mandir)/man1
  man5dir=$(mandir)/man5
  man7dir=$(mandir)/man7
  
  ASCIIDOC=asciidoc
  ASCIIDOC_EXTRA = --unsafe
  MANPAGE_XSL = manpage-normal.xsl
  XMLTO_EXTRA =
  INSTALL?=install
  RM ?= rm -f
  DOC_REF = origin/man
  HTML_REF = origin/html
  
  infodir?=$(prefix)/share/info
  MAKEINFO=makeinfo
  INSTALL_INFO=install-info
  DOCBOOK2X_TEXI=docbook2x-texi
  DBLATEX=dblatex
  XMLTO=xmlto
  ifndef PERL_PATH
  	PERL_PATH = /usr/bin/perl
  endif
  
  -include ../config.mak.autogen
  -include ../config.mak
  
  _tmp_tool_path := $(call get-executable,$(ASCIIDOC))
  ifeq ($(_tmp_tool_path),)
  	missing_tools = $(ASCIIDOC)
  endif
  
  _tmp_tool_path := $(call get-executable,$(XMLTO))
  ifeq ($(_tmp_tool_path),)
  	missing_tools += $(XMLTO)
  endif
  
  #
  # For asciidoc ...
  #	-7.1.2,	no extra settings are needed.
  #	8.0-,	set ASCIIDOC8.
  #
  
  #
  # For docbook-xsl ...
  #	-1.68.1,	set ASCIIDOC_NO_ROFF? (based on changelog from 1.73.0)
  #	1.69.0,		no extra settings are needed?
  #	1.69.1-1.71.0,	set DOCBOOK_SUPPRESS_SP?
  #	1.71.1,		no extra settings are needed?
  #	1.72.0,		set DOCBOOK_XSL_172.
  #	1.73.0-,	set ASCIIDOC_NO_ROFF
  #
  
  #
  # If you had been using DOCBOOK_XSL_172 in an attempt to get rid
  # of 'the ".ft C" problem' in your generated manpages, and you
  # instead ended up with weird characters around callouts, try
  # using ASCIIDOC_NO_ROFF instead (it works fine with ASCIIDOC8).
  #
  
  ifdef ASCIIDOC8
  ASCIIDOC_EXTRA += -a asciidoc7compatible
  endif
  ifdef DOCBOOK_XSL_172
  ASCIIDOC_EXTRA += -a perf-asciidoc-no-roff
  MANPAGE_XSL = manpage-1.72.xsl
  else
  	ifdef ASCIIDOC_NO_ROFF
  	# docbook-xsl after 1.72 needs the regular XSL, but will not
  	# pass-thru raw roff codes from asciidoc.conf, so turn them off.
  	ASCIIDOC_EXTRA += -a perf-asciidoc-no-roff
  	endif
  endif
  ifdef MAN_BOLD_LITERAL
  XMLTO_EXTRA += -m manpage-bold-literal.xsl
  endif
  ifdef DOCBOOK_SUPPRESS_SP
  XMLTO_EXTRA += -m manpage-suppress-sp.xsl
  endif
  
  SHELL_PATH ?= $(SHELL)
  # Shell quote;
  SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
  
  #
  # Please note that there is a minor bug in asciidoc.
  # The version after 6.0.3 _will_ include the patch found here:
  #   http://marc.theaimsgroup.com/?l=perf&m=111558757202243&w=2
  #
  # Until that version is released you may have to apply the patch
  # yourself - yes, all 6 characters of it!
  #
  
  QUIET_SUBDIR0  = +$(MAKE) -C # space to separate -C and subdir
  QUIET_SUBDIR1  =
  
  ifneq ($(findstring $(MAKEFLAGS),w),w)
  PRINT_DIR = --no-print-directory
  else # "make -w"
  NO_SUBDIR = :
  endif
  
  ifneq ($(findstring $(MAKEFLAGS),s),s)
  ifneq ($(V),1)
  	QUIET_ASCIIDOC	= @echo '  ASCIIDOC '$@;
  	QUIET_XMLTO	= @echo '  XMLTO    '$@;
  	QUIET_DB2TEXI	= @echo '  DB2TEXI  '$@;
  	QUIET_MAKEINFO	= @echo '  MAKEINFO '$@;
  	QUIET_DBLATEX	= @echo '  DBLATEX  '$@;
  	QUIET_XSLTPROC	= @echo '  XSLTPROC '$@;
  	QUIET_GEN	= @echo '  GEN      '$@;
  	QUIET_STDERR	= 2> /dev/null
  	QUIET_SUBDIR0	= +@subdir=
  	QUIET_SUBDIR1	= ;$(NO_SUBDIR) \
  			   echo '  SUBDIR   ' $$subdir; \
  			  $(MAKE) $(PRINT_DIR) -C $$subdir
  	export V
  endif
  endif
  
  all: html man
  
  html: $(DOC_HTML)
  
  $(DOC_HTML) $(DOC_MAN1) $(DOC_MAN5) $(DOC_MAN7): asciidoc.conf
  
  man: man1 man5 man7
  man1: $(DOC_MAN1)
  man5: $(DOC_MAN5)
  man7: $(DOC_MAN7)
  
  info: $(OUTPUT)perf.info $(OUTPUT)perfman.info
  
  pdf: $(OUTPUT)user-manual.pdf
  
  install: install-man
  
  check-man-tools:
  ifdef missing_tools
  	$(error "You need to install $(missing_tools) for man pages")
  endif
  
  do-install-man: man
  	$(call QUIET_INSTALL, Documentation-man) \
  		$(INSTALL) -d -m 755 $(DESTDIR)$(man1dir); \
  #		$(INSTALL) -d -m 755 $(DESTDIR)$(man5dir); \
  #		$(INSTALL) -d -m 755 $(DESTDIR)$(man7dir); \
  		$(INSTALL) -m 644 $(DOC_MAN1) $(DESTDIR)$(man1dir); \
  #		$(INSTALL) -m 644 $(DOC_MAN5) $(DESTDIR)$(man5dir); \
  #		$(INSTALL) -m 644 $(DOC_MAN7) $(DESTDIR)$(man7dir)
  
  install-man: check-man-tools man
  
  ifdef missing_tools
    DO_INSTALL_MAN = $(warning Please install $(missing_tools) to have the man pages installed)
  else
    DO_INSTALL_MAN = do-install-man
  endif
  
  try-install-man: $(DO_INSTALL_MAN)
  
  install-info: info
  	$(call QUIET_INSTALL, Documentation-info) \
  		$(INSTALL) -d -m 755 $(DESTDIR)$(infodir); \
  		$(INSTALL) -m 644 $(OUTPUT)perf.info $(OUTPUT)perfman.info $(DESTDIR)$(infodir); \
  	if test -r $(DESTDIR)$(infodir)/dir; then \
  		$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) perf.info ;\
  		$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) perfman.info ;\
  	else \
  	  echo "No directory found in $(DESTDIR)$(infodir)" >&2 ; \
  	fi
  
  install-pdf: pdf
  	$(call QUIET_INSTALL, Documentation-pdf) \
  		$(INSTALL) -d -m 755 $(DESTDIR)$(pdfdir); \
  		$(INSTALL) -m 644 $(OUTPUT)user-manual.pdf $(DESTDIR)$(pdfdir)
  
  #install-html: html
  #	'$(SHELL_PATH_SQ)' ./install-webdoc.sh $(DESTDIR)$(htmldir)
  
  
  #
  # Determine "include::" file references in asciidoc files.
  #
  $(OUTPUT)doc.dep : $(wildcard *.txt) build-docdep.perl
  	$(QUIET_GEN)$(RM) $@+ $@ && \
  	$(PERL_PATH) ./build-docdep.perl >$@+ $(QUIET_STDERR) && \
  	mv $@+ $@
  
  -include $(OUPTUT)doc.dep
  
  _cmds_txt = cmds-ancillaryinterrogators.txt \
  	cmds-ancillarymanipulators.txt \
  	cmds-mainporcelain.txt \
  	cmds-plumbinginterrogators.txt \
  	cmds-plumbingmanipulators.txt \
  	cmds-synchingrepositories.txt \
  	cmds-synchelpers.txt \
  	cmds-purehelpers.txt \
  	cmds-foreignscminterface.txt
  cmds_txt=$(addprefix $(OUTPUT),$(_cmds_txt))
  
  $(cmds_txt): $(OUTPUT)cmd-list.made
  
  $(OUTPUT)cmd-list.made: cmd-list.perl ../command-list.txt $(MAN1_TXT)
  	$(QUIET_GEN)$(RM) $@ && \
  	$(PERL_PATH) ./cmd-list.perl ../command-list.txt $(QUIET_STDERR) && \
  	date >$@
  
  CLEAN_FILES =									\
  	$(MAN_XML) $(addsuffix +,$(MAN_XML))					\
  	$(MAN_HTML) $(addsuffix +,$(MAN_HTML))					\
  	$(DOC_HTML) $(DOC_MAN1) $(DOC_MAN5) $(DOC_MAN7)				\
  	$(OUTPUT)*.texi $(OUTPUT)*.texi+ $(OUTPUT)*.texi++			\
  	$(OUTPUT)perf.info $(OUTPUT)perfman.info				\
  	$(OUTPUT)howto-index.txt $(OUTPUT)howto/*.html $(OUTPUT)doc.dep		\
  	$(OUTPUT)technical/api-*.html $(OUTPUT)technical/api-index.txt		\
  	$(cmds_txt) $(OUTPUT)*.made
  clean:
  	$(call QUIET_CLEAN, Documentation) $(RM) $(CLEAN_FILES)
  
  $(MAN_HTML): $(OUTPUT)%.html : %.txt
  	$(QUIET_ASCIIDOC)$(RM) $@+ $@ && \
  	$(ASCIIDOC) -b xhtml11 -d manpage -f asciidoc.conf \
  		$(ASCIIDOC_EXTRA) -aperf_version=$(PERF_VERSION) -o $@+ $< && \
  	mv $@+ $@
  
  $(OUTPUT)%.1 $(OUTPUT)%.5 $(OUTPUT)%.7 : $(OUTPUT)%.xml
  	$(QUIET_XMLTO)$(RM) $@ && \
  	$(XMLTO) -o $(OUTPUT). -m $(MANPAGE_XSL) $(XMLTO_EXTRA) man $<
  
  $(OUTPUT)%.xml : %.txt
  	$(QUIET_ASCIIDOC)$(RM) $@+ $@ && \
  	$(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
  		$(ASCIIDOC_EXTRA) -aperf_version=$(PERF_VERSION) -o $@+ $< && \
  	mv $@+ $@
  
  XSLT = docbook.xsl
  XSLTOPTS = --xinclude --stringparam html.stylesheet docbook-xsl.css
  
  $(OUTPUT)user-manual.html: $(OUTPUT)user-manual.xml
  	$(QUIET_XSLTPROC)xsltproc $(XSLTOPTS) -o $@ $(XSLT) $<
  
  $(OUTPUT)perf.info: $(OUTPUT)user-manual.texi
  	$(QUIET_MAKEINFO)$(MAKEINFO) --no-split -o $@ $(OUTPUT)user-manual.texi
  
  $(OUTPUT)user-manual.texi: $(OUTPUT)user-manual.xml
  	$(QUIET_DB2TEXI)$(RM) $@+ $@ && \
  	$(DOCBOOK2X_TEXI) $(OUTPUT)user-manual.xml --encoding=UTF-8 --to-stdout >$@++ && \
  	$(PERL_PATH) fix-texi.perl <$@++ >$@+ && \
  	rm $@++ && \
  	mv $@+ $@
  
  $(OUTPUT)user-manual.pdf: $(OUTPUT)user-manual.xml
  	$(QUIET_DBLATEX)$(RM) $@+ $@ && \
  	$(DBLATEX) -o $@+ -p /etc/asciidoc/dblatex/asciidoc-dblatex.xsl -s /etc/asciidoc/dblatex/asciidoc-dblatex.sty $< && \
  	mv $@+ $@
  
  $(OUTPUT)perfman.texi: $(MAN_XML) cat-texi.perl
  	$(QUIET_DB2TEXI)$(RM) $@+ $@ && \
  	($(foreach xml,$(MAN_XML),$(DOCBOOK2X_TEXI) --encoding=UTF-8 \
  		--to-stdout $(xml) &&) true) > $@++ && \
  	$(PERL_PATH) cat-texi.perl $@ <$@++ >$@+ && \
  	rm $@++ && \
  	mv $@+ $@
  
  $(OUTPUT)perfman.info: $(OUTPUT)perfman.texi
  	$(QUIET_MAKEINFO)$(MAKEINFO) --no-split --no-validate $*.texi
  
  $(patsubst %.txt,%.texi,$(MAN_TXT)): %.texi : %.xml
  	$(QUIET_DB2TEXI)$(RM) $@+ $@ && \
  	$(DOCBOOK2X_TEXI) --to-stdout $*.xml >$@+ && \
  	mv $@+ $@
  
  howto-index.txt: howto-index.sh $(wildcard howto/*.txt)
  	$(QUIET_GEN)$(RM) $@+ $@ && \
  	'$(SHELL_PATH_SQ)' ./howto-index.sh $(wildcard howto/*.txt) >$@+ && \
  	mv $@+ $@
  
  $(patsubst %,%.html,$(ARTICLES)) : %.html : %.txt
  	$(QUIET_ASCIIDOC)$(ASCIIDOC) -b xhtml11 $*.txt
  
  WEBDOC_DEST = /pub/software/tools/perf/docs
  
  $(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
  	$(QUIET_ASCIIDOC)$(RM) $@+ $@ && \
  	sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+ && \
  	mv $@+ $@
  
  # UNIMPLEMENTED
  #install-webdoc : html
  #	'$(SHELL_PATH_SQ)' ./install-webdoc.sh $(WEBDOC_DEST)
  
  # quick-install: quick-install-man
  
  # quick-install-man:
  #	'$(SHELL_PATH_SQ)' ./install-doc-quick.sh $(DOC_REF) $(DESTDIR)$(mandir)
  
  #quick-install-html:
  #	'$(SHELL_PATH_SQ)' ./install-doc-quick.sh $(HTML_REF) $(DESTDIR)$(htmldir)