Merge tag 'block-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / bootconfig / Makefile
blobda5975775337e985b93d897752ec539720b2123a
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)
20 $(OUTPUT)bootconfig: main.c $(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)