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