brintos

brintos / linux-shallow public Read only

0
0
Text · 500 B · 0e4de83 Raw
21 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2build := -f $(srctree)/tools/build/Makefile.build dir=. obj3 4# More than just $(Q), we sometimes want to suppress all command output from a5# recursive make -- even the 'up to date' printout.6ifeq ($(V),1)7  Q ?=8  SILENT_MAKE = +$(Q)$(MAKE)9else10  Q ?= @11  SILENT_MAKE = +$(Q)$(MAKE) --silent12endif13 14fixdep:15	$(SILENT_MAKE) -C $(srctree)/tools/build CFLAGS= LDFLAGS= $(OUTPUT)fixdep16 17fixdep-clean:18	$(Q)$(MAKE) -C $(srctree)/tools/build clean19 20.PHONY: fixdep21