diff options
author | Masami Hiramatsu <mhiramat@kernel.org> | 2021-09-17 13:02:32 +0300 |
---|---|---|
committer | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2021-10-11 03:44:05 +0300 |
commit | f30f00cc9664e6c6c9dc31846db5d8c5134fadd8 (patch) | |
tree | 7bdef2a867d2d5c6cb0c7ab05c31bdc2855043ff /tools/bootconfig | |
parent | e306220cb7b7c2948f191414ab06851e143b54c1 (diff) | |
download | linux-f30f00cc9664e6c6c9dc31846db5d8c5134fadd8.tar.xz |
tools/bootconfig: Run test script when build all
Run the bootconfig test script when build all target
so that user can notice any issue when build it.
Link: https://lkml.kernel.org/r/163187295173.2366983.18295281097397499118.stgit@devnote2
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'tools/bootconfig')
-rw-r--r-- | tools/bootconfig/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bootconfig/Makefile b/tools/bootconfig/Makefile index da5975775337..f1eec3ccbe18 100644 --- a/tools/bootconfig/Makefile +++ b/tools/bootconfig/Makefile @@ -15,7 +15,7 @@ CFLAGS = -Wall -g -I$(CURDIR)/include ALL_TARGETS := bootconfig ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_TARGETS)) -all: $(ALL_PROGRAMS) +all: $(ALL_PROGRAMS) test $(OUTPUT)bootconfig: main.c $(LIBSRC) $(CC) $(filter %.c,$^) $(CFLAGS) -o $@ |