mirror of
https://github.com/torvalds/linux.git
synced 2024-12-01 00:21:32 +00:00
perf tools: Update Makefile with some help
The perf makefile is nicely complete except for a) an uninstall option b) a 'make help' description This patch implements b) it also comments out other non-working makefile targets Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com> LKML-Reference: <new-submission> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
b99976e2d2
commit
4187e262bc
@ -178,8 +178,8 @@ install-pdf: pdf
|
|||||||
$(INSTALL) -d -m 755 $(DESTDIR)$(pdfdir)
|
$(INSTALL) -d -m 755 $(DESTDIR)$(pdfdir)
|
||||||
$(INSTALL) -m 644 user-manual.pdf $(DESTDIR)$(pdfdir)
|
$(INSTALL) -m 644 user-manual.pdf $(DESTDIR)$(pdfdir)
|
||||||
|
|
||||||
install-html: html
|
#install-html: html
|
||||||
'$(SHELL_PATH_SQ)' ./install-webdoc.sh $(DESTDIR)$(htmldir)
|
# '$(SHELL_PATH_SQ)' ./install-webdoc.sh $(DESTDIR)$(htmldir)
|
||||||
|
|
||||||
../PERF-VERSION-FILE: .FORCE-PERF-VERSION-FILE
|
../PERF-VERSION-FILE: .FORCE-PERF-VERSION-FILE
|
||||||
$(QUIET_SUBDIR0)../ $(QUIET_SUBDIR1) PERF-VERSION-FILE
|
$(QUIET_SUBDIR0)../ $(QUIET_SUBDIR1) PERF-VERSION-FILE
|
||||||
@ -288,15 +288,16 @@ $(patsubst %.txt,%.html,$(wildcard howto/*.txt)): %.html : %.txt
|
|||||||
sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+ && \
|
sed -e '1,/^$$/d' $< | $(ASCIIDOC) -b xhtml11 - >$@+ && \
|
||||||
mv $@+ $@
|
mv $@+ $@
|
||||||
|
|
||||||
install-webdoc : html
|
# UNIMPLEMENTED
|
||||||
'$(SHELL_PATH_SQ)' ./install-webdoc.sh $(WEBDOC_DEST)
|
#install-webdoc : html
|
||||||
|
# '$(SHELL_PATH_SQ)' ./install-webdoc.sh $(WEBDOC_DEST)
|
||||||
|
|
||||||
quick-install: quick-install-man
|
# quick-install: quick-install-man
|
||||||
|
|
||||||
quick-install-man:
|
# quick-install-man:
|
||||||
'$(SHELL_PATH_SQ)' ./install-doc-quick.sh $(DOC_REF) $(DESTDIR)$(mandir)
|
# '$(SHELL_PATH_SQ)' ./install-doc-quick.sh $(DOC_REF) $(DESTDIR)$(mandir)
|
||||||
|
|
||||||
quick-install-html:
|
#quick-install-html:
|
||||||
'$(SHELL_PATH_SQ)' ./install-doc-quick.sh $(HTML_REF) $(DESTDIR)$(htmldir)
|
# '$(SHELL_PATH_SQ)' ./install-doc-quick.sh $(HTML_REF) $(DESTDIR)$(htmldir)
|
||||||
|
|
||||||
.PHONY: .FORCE-PERF-VERSION-FILE
|
.PHONY: .FORCE-PERF-VERSION-FILE
|
||||||
|
@ -1102,6 +1102,36 @@ $(sort $(dir $(DIRECTORY_DEPS))):
|
|||||||
$(LIB_FILE): $(LIB_OBJS)
|
$(LIB_FILE): $(LIB_OBJS)
|
||||||
$(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
|
$(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
|
||||||
|
|
||||||
|
help:
|
||||||
|
@echo 'Perf make targets:'
|
||||||
|
@echo ' doc - make *all* documentation (see below)'
|
||||||
|
@echo ' man - make manpage documentation (access with man <foo>)'
|
||||||
|
@echo ' html - make html documentation'
|
||||||
|
@echo ' info - make GNU info documentation (access with info <foo>)'
|
||||||
|
@echo ' pdf - make pdf documentation'
|
||||||
|
@echo ' TAGS - use etags to make tag information for source browsing'
|
||||||
|
@echo ' tags - use ctags to make tag information for source browsing'
|
||||||
|
@echo ' cscope - use cscope to make interactive browsing database'
|
||||||
|
@echo ''
|
||||||
|
@echo 'Perf install targets:'
|
||||||
|
@echo ' NOTE: documentation build requires asciidoc, xmlto packages to be installed'
|
||||||
|
@echo ' HINT: use "make prefix=<path> <install target>" to install to a particular'
|
||||||
|
@echo ' path like make prefix=/usr/local install install-doc'
|
||||||
|
@echo ' install - install compiled binaries'
|
||||||
|
@echo ' install-doc - install *all* documentation'
|
||||||
|
@echo ' install-man - install manpage documentation'
|
||||||
|
@echo ' install-html - install html documentation'
|
||||||
|
@echo ' install-info - install GNU info documentation'
|
||||||
|
@echo ' install-pdf - install pdf documentation'
|
||||||
|
@echo ''
|
||||||
|
@echo ' quick-install-doc - alias for quick-install-man'
|
||||||
|
@echo ' quick-install-man - install the documentation quickly'
|
||||||
|
@echo ' quick-install-html - install the html documentation quickly'
|
||||||
|
@echo ''
|
||||||
|
@echo 'Perf maintainer targets:'
|
||||||
|
@echo ' distclean - alias to clean'
|
||||||
|
@echo ' clean - clean all binary objects and build output'
|
||||||
|
|
||||||
doc:
|
doc:
|
||||||
$(MAKE) -C Documentation all
|
$(MAKE) -C Documentation all
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user