aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/Makefile
diff options
context:
space:
mode:
authorJesse Brandeburg <jesse.brandeburg@intel.com>2011-02-09 20:11:00 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2011-02-16 11:47:56 -0500
commit4187e262bc90369ba581ee28ec74ed416618889e (patch)
tree4223199a25f26d9ce279be201ec393bca304a868 /tools/perf/Makefile
parentb99976e2d277c963138e090ae17bf835f8a07680 (diff)
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>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r--tools/perf/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index ffd1047cd93..7c75f1d45f5 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -1102,6 +1102,36 @@ $(sort $(dir $(DIRECTORY_DEPS))):
1102$(LIB_FILE): $(LIB_OBJS) 1102$(LIB_FILE): $(LIB_OBJS)
1103 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS) 1103 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(LIB_OBJS)
1104 1104
1105help:
1106 @echo 'Perf make targets:'
1107 @echo ' doc - make *all* documentation (see below)'
1108 @echo ' man - make manpage documentation (access with man <foo>)'
1109 @echo ' html - make html documentation'
1110 @echo ' info - make GNU info documentation (access with info <foo>)'
1111 @echo ' pdf - make pdf documentation'
1112 @echo ' TAGS - use etags to make tag information for source browsing'
1113 @echo ' tags - use ctags to make tag information for source browsing'
1114 @echo ' cscope - use cscope to make interactive browsing database'
1115 @echo ''
1116 @echo 'Perf install targets:'
1117 @echo ' NOTE: documentation build requires asciidoc, xmlto packages to be installed'
1118 @echo ' HINT: use "make prefix=<path> <install target>" to install to a particular'
1119 @echo ' path like make prefix=/usr/local install install-doc'
1120 @echo ' install - install compiled binaries'
1121 @echo ' install-doc - install *all* documentation'
1122 @echo ' install-man - install manpage documentation'
1123 @echo ' install-html - install html documentation'
1124 @echo ' install-info - install GNU info documentation'
1125 @echo ' install-pdf - install pdf documentation'
1126 @echo ''
1127 @echo ' quick-install-doc - alias for quick-install-man'
1128 @echo ' quick-install-man - install the documentation quickly'
1129 @echo ' quick-install-html - install the html documentation quickly'
1130 @echo ''
1131 @echo 'Perf maintainer targets:'
1132 @echo ' distclean - alias to clean'
1133 @echo ' clean - clean all binary objects and build output'
1134
1105doc: 1135doc:
1106 $(MAKE) -C Documentation all 1136 $(MAKE) -C Documentation all
1107 1137