-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bootconfig: Support O=<builddir> option
Support O=<builddir> option to build bootconfig tool in the other directory. As same as other tools, if you specify O=<builddir>, bootconfig command is build under <builddir>. Link: http://lkml.kernel.org/r/158323468033.10560.14661631369326294355.stgit@devnote2 Reported-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
- Loading branch information
Masami Hiramatsu
authored and
Steven Rostedt (VMware)
committed
Mar 3, 2020
1 parent
5412e0b
commit 306b69d
Showing
2 changed files
with
27 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# Makefile for bootconfig command | ||
include ../scripts/Makefile.include | ||
|
||
bindir ?= /usr/bin | ||
|
||
HEADER = include/linux/bootconfig.h | ||
CFLAGS = -Wall -g -I./include | ||
ifeq ($(srctree),) | ||
srctree := $(patsubst %/,%,$(dir $(CURDIR))) | ||
srctree := $(patsubst %/,%,$(dir $(srctree))) | ||
endif | ||
|
||
PROGS = bootconfig | ||
LIBSRC = $(srctree)/lib/bootconfig.c $(srctree)/include/linux/bootconfig.h | ||
CFLAGS = -Wall -g -I$(CURDIR)/include | ||
|
||
all: $(PROGS) | ||
ALL_TARGETS := bootconfig | ||
ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_TARGETS)) | ||
|
||
bootconfig: ../../lib/bootconfig.c main.c $(HEADER) | ||
all: $(ALL_PROGRAMS) | ||
|
||
$(OUTPUT)bootconfig: main.c $(LIBSRC) | ||
$(CC) $(filter %.c,$^) $(CFLAGS) -o $@ | ||
|
||
install: $(PROGS) | ||
install bootconfig $(DESTDIR)$(bindir) | ||
test: $(ALL_PROGRAMS) test-bootconfig.sh | ||
./test-bootconfig.sh $(OUTPUT) | ||
|
||
test: bootconfig | ||
./test-bootconfig.sh | ||
install: $(ALL_PROGRAMS) | ||
install $(OUTPUT)bootconfig $(DESTDIR)$(bindir) | ||
|
||
clean: | ||
$(RM) -f *.o bootconfig | ||
$(RM) -f $(OUTPUT)*.o $(ALL_PROGRAMS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters