Makefile.include 500 B

1234567891011121314151617181920
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. build := -f $(srctree)/tools/build/Makefile.build dir=. obj
  3. # More than just $(Q), we sometimes want to suppress all command output from a
  4. # recursive make -- even the 'up to date' printout.
  5. ifeq ($(V),1)
  6. Q ?=
  7. SILENT_MAKE = +$(Q)$(MAKE)
  8. else
  9. Q ?= @
  10. SILENT_MAKE = +$(Q)$(MAKE) --silent
  11. endif
  12. fixdep:
  13. $(SILENT_MAKE) -C $(srctree)/tools/build CFLAGS= LDFLAGS= $(OUTPUT)fixdep
  14. fixdep-clean:
  15. $(Q)$(MAKE) -C $(srctree)/tools/build clean
  16. .PHONY: fixdep