Makefile.include 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. ifneq ($(O),)
  2. ifeq ($(origin O), command line)
  3. dummy := $(if $(shell test -d $(O) || echo $(O)),$(error O=$(O) does not exist),)
  4. ABSOLUTE_O := $(shell cd $(O) ; pwd)
  5. OUTPUT := $(ABSOLUTE_O)/$(if $(subdir),$(subdir)/)
  6. COMMAND_O := O=$(ABSOLUTE_O)
  7. ifeq ($(objtree),)
  8. objtree := $(O)
  9. endif
  10. endif
  11. endif
  12. # check that the output directory actually exists
  13. ifneq ($(OUTPUT),)
  14. OUTDIR := $(shell cd $(OUTPUT) && /bin/pwd)
  15. $(if $(OUTDIR),, $(error output directory "$(OUTPUT)" does not exist))
  16. endif
  17. #
  18. # Include saner warnings here, which can catch bugs:
  19. #
  20. EXTRA_WARNINGS := -Wbad-function-cast
  21. EXTRA_WARNINGS += -Wdeclaration-after-statement
  22. EXTRA_WARNINGS += -Wformat-security
  23. EXTRA_WARNINGS += -Wformat-y2k
  24. EXTRA_WARNINGS += -Winit-self
  25. EXTRA_WARNINGS += -Wmissing-declarations
  26. EXTRA_WARNINGS += -Wmissing-prototypes
  27. EXTRA_WARNINGS += -Wnested-externs
  28. EXTRA_WARNINGS += -Wno-system-headers
  29. EXTRA_WARNINGS += -Wold-style-definition
  30. EXTRA_WARNINGS += -Wpacked
  31. EXTRA_WARNINGS += -Wredundant-decls
  32. EXTRA_WARNINGS += -Wshadow
  33. EXTRA_WARNINGS += -Wstrict-aliasing=3
  34. EXTRA_WARNINGS += -Wstrict-prototypes
  35. EXTRA_WARNINGS += -Wswitch-default
  36. EXTRA_WARNINGS += -Wswitch-enum
  37. EXTRA_WARNINGS += -Wundef
  38. EXTRA_WARNINGS += -Wwrite-strings
  39. EXTRA_WARNINGS += -Wformat
  40. ifneq ($(findstring $(MAKEFLAGS), w),w)
  41. PRINT_DIR = --no-print-directory
  42. else
  43. NO_SUBDIR = :
  44. endif
  45. ifneq ($(filter 4.%,$(MAKE_VERSION)),) # make-4
  46. ifneq ($(filter %s ,$(firstword x$(MAKEFLAGS))),)
  47. silent=1
  48. endif
  49. else # make-3.8x
  50. ifneq ($(filter s% -s%,$(MAKEFLAGS)),)
  51. silent=1
  52. endif
  53. endif
  54. #
  55. # Define a callable command for descending to a new directory
  56. #
  57. # Call by doing: $(call descend,directory[,target])
  58. #
  59. descend = \
  60. +mkdir -p $(OUTPUT)$(1) && \
  61. $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
  62. QUIET_SUBDIR0 = +$(MAKE) $(COMMAND_O) -C # space to separate -C and subdir
  63. QUIET_SUBDIR1 =
  64. ifneq ($(silent),1)
  65. ifneq ($(V),1)
  66. QUIET_CC = @echo ' CC '$@;
  67. QUIET_CC_FPIC = @echo ' CC FPIC '$@;
  68. QUIET_AR = @echo ' AR '$@;
  69. QUIET_LINK = @echo ' LINK '$@;
  70. QUIET_MKDIR = @echo ' MKDIR '$@;
  71. QUIET_GEN = @echo ' GEN '$@;
  72. QUIET_SUBDIR0 = +@subdir=
  73. QUIET_SUBDIR1 = ;$(NO_SUBDIR) \
  74. echo ' SUBDIR '$$subdir; \
  75. $(MAKE) $(PRINT_DIR) -C $$subdir
  76. QUIET_FLEX = @echo ' FLEX '$@;
  77. QUIET_BISON = @echo ' BISON '$@;
  78. descend = \
  79. +@echo ' DESCEND '$(1); \
  80. mkdir -p $(OUTPUT)$(1) && \
  81. $(MAKE) $(COMMAND_O) subdir=$(if $(subdir),$(subdir)/$(1),$(1)) $(PRINT_DIR) -C $(1) $(2)
  82. QUIET_CLEAN = @printf ' CLEAN %s\n' $1;
  83. QUIET_INSTALL = @printf ' INSTALL %s\n' $1;
  84. endif
  85. endif
  86. pound := \#