]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/lib/subcmd/Makefile
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / tools / lib / subcmd / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
4b6ab94e 2include ../../scripts/Makefile.include
ca70c24f 3include ../../scripts/utilities.mak # QUIET_CLEAN
4b6ab94e
JP
4
5ifeq ($(srctree),)
e19b7cee 6srctree := $(patsubst %/,%,$(dir $(CURDIR)))
4b6ab94e
JP
7srctree := $(patsubst %/,%,$(dir $(srctree)))
8srctree := $(patsubst %/,%,$(dir $(srctree)))
9#$(info Determined 'srctree' to be $(srctree))
10endif
11
c1d45c3a
JP
12CC ?= $(CROSS_COMPILE)gcc
13LD ?= $(CROSS_COMPILE)ld
14AR ?= $(CROSS_COMPILE)ar
15
4b6ab94e
JP
16RM = rm -f
17
18MAKEFLAGS += --no-print-directory
19
20LIBFILE = $(OUTPUT)libsubcmd.a
21
22CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS)
49b3cd30
ACM
23CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC
24
3866058e 25ifeq ($(CC_NO_CLANG), 0)
49b3cd30
ACM
26 CFLAGS += -O3
27else
28 CFLAGS += -O6
29endif
fd01d06a
CP
30
31# Treat warnings as errors unless directed not to
32ifneq ($(WERROR),0)
33 CFLAGS += -Werror
34endif
35
4b6ab94e
JP
36CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
37
38CFLAGS += -I$(srctree)/tools/include/
39CFLAGS += -I$(srctree)/include/uapi
40CFLAGS += -I$(srctree)/include
41
42SUBCMD_IN := $(OUTPUT)libsubcmd-in.o
43
44all:
45
46export srctree OUTPUT CC LD CFLAGS V
47include $(srctree)/tools/build/Makefile.include
48
49all: fixdep $(LIBFILE)
50
51$(SUBCMD_IN): FORCE
52 @$(MAKE) $(build)=libsubcmd
53
54$(LIBFILE): $(SUBCMD_IN)
55 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(SUBCMD_IN)
56
57clean:
58 $(call QUIET_CLEAN, libsubcmd) $(RM) $(LIBFILE); \
59 find $(if $(OUTPUT),$(OUTPUT),.) -name \*.o -or -name \*.o.cmd -or -name \*.o.d | xargs $(RM)
60
61FORCE:
62
63.PHONY: clean FORCE