Merge tag 'hwmon-for-v6.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux.git] / tools / bootconfig / Makefile
blob566c3e0ee561f34273bce0c4fec936c4b0d6d203
1 # SPDX-License-Identifier: GPL-2.0
2 # Makefile for bootconfig command
3 include ../scripts/Makefile.include
5 bindir ?= /usr/bin
7 ifeq ($(srctree),)
8 srctree := $(patsubst %/,%,$(dir $(CURDIR)))
9 srctree := $(patsubst %/,%,$(dir $(srctree)))
10 endif
12 LIBSRC = $(srctree)/lib/bootconfig.c $(srctree)/include/linux/bootconfig.h
13 CFLAGS = -Wall -g -I$(CURDIR)/include
15 ALL_TARGETS := bootconfig
16 ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_TARGETS))
18 all: $(ALL_PROGRAMS) test
20 $(OUTPUT)bootconfig: main.c include/linux/bootconfig.h $(LIBSRC)
21 $(CC) $(filter %.c,$^) $(CFLAGS) -o $@
23 test: $(ALL_PROGRAMS) test-bootconfig.sh
24 ./test-bootconfig.sh $(OUTPUT)
26 install: $(ALL_PROGRAMS)
27 install $(OUTPUT)bootconfig $(DESTDIR)$(bindir)
29 clean:
30 $(RM) -f $(OUTPUT)*.o $(ALL_PROGRAMS)