diff options
author | Jiri Olsa | 2015-09-23 12:34:02 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo | 2015-09-28 20:50:55 +0200 |
commit | 7c422f5572667fef0db38d2046ecce69dcf0afc8 (patch) | |
tree | 5f3979225872cb1c79a7b5a546e13b855ccf648b /tools/lib/bpf/Makefile | |
parent | perf tools: Rename the 'single_dep' target to 'prepare' (diff) | |
download | kernel-qcow2-linux-7c422f5572667fef0db38d2046ecce69dcf0afc8.tar.gz kernel-qcow2-linux-7c422f5572667fef0db38d2046ecce69dcf0afc8.tar.xz kernel-qcow2-linux-7c422f5572667fef0db38d2046ecce69dcf0afc8.zip |
tools build: Build fixdep helper from perf and basic libs
Adding the fixdep target into the Makefile.include to ease up building of
fixdep helper, that needs to be built before we dive in to the build itself.
The user can invoke the fixdep target to build the helper.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1443004442-32660-8-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib/bpf/Makefile')
-rw-r--r-- | tools/lib/bpf/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/lib/bpf/Makefile b/tools/lib/bpf/Makefile index c66ade68d4a1..fc9af57b666e 100644 --- a/tools/lib/bpf/Makefile +++ b/tools/lib/bpf/Makefile @@ -123,6 +123,8 @@ endif # the same command line setup. MAKEOVERRIDES= +all: + export srctree OUTPUT CC LD CFLAGS V include $(srctree)/tools/build/Makefile.include @@ -133,7 +135,7 @@ CMD_TARGETS = $(LIB_FILE) TARGETS = $(CMD_TARGETS) -all: $(VERSION_FILES) all_cmd +all: fixdep $(VERSION_FILES) all_cmd all_cmd: $(CMD_TARGETS) |