aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2012-12-11 07:54:21 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-12-11 15:20:32 -0500
commit40c5ec7acb9278833cfbf9dd15c6c02d57cbaf77 (patch)
tree573a865955b3c325e54828c6a0595d1f05db280a /tools/perf
parent0698aeddcfe0c2514af1d012082665a3bb55d01b (diff)
perf tools: Add install-bin Makefile target
Its too annoying to go over the Documentation install target while developing the tools. Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-cfzcxj8sp727h0sgfcvvwva1@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index 10aa24c74a28..317766ec070b 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -1102,7 +1102,7 @@ perfexec_instdir = $(prefix)/$(perfexecdir)
1102endif 1102endif
1103perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir)) 1103perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir))
1104 1104
1105install: all try-install-man 1105install-bin: all
1106 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)' 1106 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'
1107 $(INSTALL) $(OUTPUT)perf '$(DESTDIR_SQ)$(bindir_SQ)' 1107 $(INSTALL) $(OUTPUT)perf '$(DESTDIR_SQ)$(bindir_SQ)'
1108 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace' 1108 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/perl/Perf-Trace-Util/lib/Perf/Trace'
@@ -1123,6 +1123,8 @@ install: all try-install-man
1123 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr' 1123 $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'
1124 $(INSTALL) tests/attr/* '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr' 1124 $(INSTALL) tests/attr/* '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'
1125 1125
1126install: install-bin try-install-man
1127
1126install-python_ext: 1128install-python_ext:
1127 $(PYTHON_WORD) util/setup.py --quiet install --root='/$(DESTDIR_SQ)' 1129 $(PYTHON_WORD) util/setup.py --quiet install --root='/$(DESTDIR_SQ)'
1128 1130