1 # SPDX-License-Identifier: GPL-2.0 << 2 include ../../scripts/Makefile.include 1 include ../../scripts/Makefile.include 3 include ../../scripts/utilities.mak 2 include ../../scripts/utilities.mak # QUIET_CLEAN 4 3 5 ifeq ($(srctree),) 4 ifeq ($(srctree),) 6 srctree := $(patsubst %/,%,$(dir $(CURDIR))) 5 srctree := $(patsubst %/,%,$(dir $(CURDIR))) 7 srctree := $(patsubst %/,%,$(dir $(srctree))) 6 srctree := $(patsubst %/,%,$(dir $(srctree))) 8 srctree := $(patsubst %/,%,$(dir $(srctree))) 7 srctree := $(patsubst %/,%,$(dir $(srctree))) 9 #$(info Determined 'srctree' to be $(srctree)) 8 #$(info Determined 'srctree' to be $(srctree)) 10 endif 9 endif 11 10 12 CC ?= $(CROSS_COMPILE)gcc 11 CC ?= $(CROSS_COMPILE)gcc 13 LD ?= $(CROSS_COMPILE)ld 12 LD ?= $(CROSS_COMPILE)ld 14 AR ?= $(CROSS_COMPILE)ar 13 AR ?= $(CROSS_COMPILE)ar 15 14 16 RM = rm -f 15 RM = rm -f 17 16 18 MAKEFLAGS += --no-print-directory 17 MAKEFLAGS += --no-print-directory 19 18 20 INSTALL = install << 21 << 22 # Use DESTDIR for installing into a different << 23 # This is useful for building a package. The p << 24 # installed in this directory as if it was the << 25 # Then the build tool can move it later. << 26 DESTDIR ?= << 27 DESTDIR_SQ = '$(subst ','\'',$(DESTDIR))' << 28 << 29 LIBFILE = $(OUTPUT)libsubcmd.a 19 LIBFILE = $(OUTPUT)libsubcmd.a 30 20 31 CFLAGS := -ggdb3 -Wall -Wextra -std=gnu99 -fPI !! 21 CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) 32 !! 22 CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC 33 ifeq ($(DEBUG),0) << 34 ifeq ($(feature-fortify-source), 1) << 35 CFLAGS += -U_FORTIFY_SOURCE -D_FORTIFY_SOU << 36 endif << 37 endif << 38 23 39 ifeq ($(DEBUG),1) !! 24 ifeq ($(CC), clang) 40 CFLAGS += -O0 << 41 else << 42 CFLAGS += -O3 25 CFLAGS += -O3 >> 26 else >> 27 CFLAGS += -O6 43 endif 28 endif 44 29 45 # Treat warnings as errors unless directed not 30 # Treat warnings as errors unless directed not to 46 ifneq ($(WERROR),0) 31 ifneq ($(WERROR),0) 47 CFLAGS += -Werror 32 CFLAGS += -Werror 48 endif 33 endif 49 34 50 CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET 35 CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE 51 36 52 CFLAGS += -I$(srctree)/tools/include/ 37 CFLAGS += -I$(srctree)/tools/include/ 53 !! 38 CFLAGS += -I$(srctree)/include/uapi 54 CFLAGS += $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) !! 39 CFLAGS += -I$(srctree)/include 55 40 56 SUBCMD_IN := $(OUTPUT)libsubcmd-in.o 41 SUBCMD_IN := $(OUTPUT)libsubcmd-in.o 57 42 58 ifeq ($(LP64), 1) << 59 libdir_relative = lib64 << 60 else << 61 libdir_relative = lib << 62 endif << 63 << 64 prefix ?= << 65 libdir = $(prefix)/$(libdir_relative) << 66 << 67 # Shell quotes << 68 libdir_SQ = $(subst ','\'',$(libdir)) << 69 << 70 all: 43 all: 71 44 72 export srctree OUTPUT CC LD CFLAGS V 45 export srctree OUTPUT CC LD CFLAGS V 73 include $(srctree)/tools/build/Makefile.includ 46 include $(srctree)/tools/build/Makefile.include 74 47 75 all: fixdep $(LIBFILE) 48 all: fixdep $(LIBFILE) 76 49 77 $(SUBCMD_IN): fixdep FORCE !! 50 $(SUBCMD_IN): FORCE 78 @$(MAKE) $(build)=libsubcmd 51 @$(MAKE) $(build)=libsubcmd 79 52 80 $(LIBFILE): $(SUBCMD_IN) 53 $(LIBFILE): $(SUBCMD_IN) 81 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $( 54 $(QUIET_AR)$(RM) $@ && $(AR) rcs $@ $(SUBCMD_IN) 82 55 83 define do_install_mkdir << 84 if [ ! -d '$(DESTDIR_SQ)$1' ]; then << 85 $(INSTALL) -d -m 755 '$(DESTDI << 86 fi << 87 endef << 88 << 89 define do_install << 90 if [ ! -d '$2' ]; then \ << 91 $(INSTALL) -d -m 755 '$2'; \ << 92 fi; << 93 $(INSTALL) $1 $(if $3,-m $3,) '$2' << 94 endef << 95 << 96 install_lib: $(LIBFILE) << 97 $(call QUIET_INSTALL, $(LIBFILE)) \ << 98 $(call do_install_mkdir,$(libd << 99 cp -fpR $(LIBFILE) $(DESTDIR)$ << 100 << 101 HDRS := exec-cmd.h help.h pager.h parse-option << 102 INSTALL_HDRS_PFX := $(DESTDIR)$(prefix)/includ << 103 INSTALL_HDRS := $(addprefix $(INSTALL_HDRS_PFX << 104 << 105 $(INSTALL_HDRS): $(INSTALL_HDRS_PFX)/%.h: %.h << 106 $(call QUIET_INSTALL, $@) \ << 107 $(call do_install,$<,$(INSTALL << 108 << 109 install_headers: $(INSTALL_HDRS) << 110 $(call QUIET_INSTALL, libsubcmd_header << 111 << 112 install: install_lib install_headers << 113 << 114 clean: 56 clean: 115 $(call QUIET_CLEAN, libsubcmd) $(RM) $ 57 $(call QUIET_CLEAN, libsubcmd) $(RM) $(LIBFILE); \ 116 find $(or $(OUTPUT),.) -name \*.o -or !! 58 find $(if $(OUTPUT),$(OUTPUT),.) -name \*.o -or -name \*.o.cmd -or -name \*.o.d | xargs $(RM) 117 59 118 FORCE: 60 FORCE: 119 61 120 .PHONY: clean FORCE 62 .PHONY: clean FORCE
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.