Makefile.lib 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. # Backward compatibility
  2. asflags-y += $(EXTRA_AFLAGS)
  3. ccflags-y += $(EXTRA_CFLAGS)
  4. cppflags-y += $(EXTRA_CPPFLAGS)
  5. ldflags-y += $(EXTRA_LDFLAGS)
  6. # Figure out what we need to build from the various variables
  7. # ===========================================================================
  8. # When an object is listed to be built compiled-in and modular,
  9. # only build the compiled-in version
  10. obj-m := $(filter-out $(obj-y),$(obj-m))
  11. # Libraries are always collected in one lib file.
  12. # Filter out objects already built-in
  13. lib-y := $(filter-out $(obj-y), $(sort $(lib-y) $(lib-m)))
  14. # Handle objects in subdirs
  15. # ---------------------------------------------------------------------------
  16. # o if we encounter foo/ in $(obj-y), replace it by foo/built-in.o
  17. # and add the directory to the list of dirs to descend into: $(subdir-y)
  18. # o if we encounter foo/ in $(obj-m), remove it from $(obj-m)
  19. # and add the directory to the list of dirs to descend into: $(subdir-m)
  20. # Determine modorder.
  21. # Unfortunately, we don't have information about ordering between -y
  22. # and -m subdirs. Just put -y's first.
  23. modorder := $(patsubst %/,%/modules.order, $(filter %/, $(obj-y)) $(obj-m:.o=.ko))
  24. __subdir-y := $(patsubst %/,%,$(filter %/, $(obj-y)))
  25. subdir-y += $(__subdir-y)
  26. __subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m)))
  27. subdir-m += $(__subdir-m)
  28. obj-y := $(patsubst %/, %/built-in.o, $(obj-y))
  29. obj-m := $(filter-out %/, $(obj-m))
  30. # Subdirectories we need to descend into
  31. subdir-ym := $(sort $(subdir-y) $(subdir-m))
  32. # if $(foo-objs) exists, foo.o is a composite object
  33. multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
  34. multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
  35. multi-used := $(multi-used-y) $(multi-used-m)
  36. single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
  37. # Build list of the parts of our composite objects, our composite
  38. # objects depend on those (obviously)
  39. multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
  40. multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y)))
  41. multi-objs := $(multi-objs-y) $(multi-objs-m)
  42. # $(subdir-obj-y) is the list of objects in $(obj-y) which uses dir/ to
  43. # tell kbuild to descend
  44. subdir-obj-y := $(filter %/built-in.o, $(obj-y))
  45. # $(obj-dirs) is a list of directories that contain object files
  46. obj-dirs := $(dir $(multi-objs) $(subdir-obj-y))
  47. # Replace multi-part objects by their individual parts, look at local dir only
  48. real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs)) $($(m:.o=-y)),$(m))) $(extra-y)
  49. real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs)) $($(m:.o=-y)),$(m)))
  50. # Add subdir path
  51. extra-y := $(addprefix $(obj)/,$(extra-y))
  52. always := $(addprefix $(obj)/,$(always))
  53. targets := $(addprefix $(obj)/,$(targets))
  54. modorder := $(addprefix $(obj)/,$(modorder))
  55. obj-y := $(addprefix $(obj)/,$(obj-y))
  56. obj-m := $(addprefix $(obj)/,$(obj-m))
  57. lib-y := $(addprefix $(obj)/,$(lib-y))
  58. subdir-obj-y := $(addprefix $(obj)/,$(subdir-obj-y))
  59. real-objs-y := $(addprefix $(obj)/,$(real-objs-y))
  60. real-objs-m := $(addprefix $(obj)/,$(real-objs-m))
  61. single-used-m := $(addprefix $(obj)/,$(single-used-m))
  62. multi-used-y := $(addprefix $(obj)/,$(multi-used-y))
  63. multi-used-m := $(addprefix $(obj)/,$(multi-used-m))
  64. multi-objs-y := $(addprefix $(obj)/,$(multi-objs-y))
  65. multi-objs-m := $(addprefix $(obj)/,$(multi-objs-m))
  66. subdir-ym := $(addprefix $(obj)/,$(subdir-ym))
  67. obj-dirs := $(addprefix $(obj)/,$(obj-dirs))
  68. # These flags are needed for modversions and compiling, so we define them here
  69. # already
  70. # $(modname_flags) #defines KBUILD_MODNAME as the name of the module it will
  71. # end up in (or would, if it gets compiled in)
  72. # Note: It's possible that one object gets potentially linked into more
  73. # than one module. In that case KBUILD_MODNAME will be set to foo_bar,
  74. # where foo and bar are the name of the modules.
  75. name-fix = $(subst $(comma),_,$(subst -,_,$1))
  76. basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))"
  77. modname_flags = $(if $(filter 1,$(words $(modname))),\
  78. -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))")
  79. #hash values
  80. ifdef CONFIG_DYNAMIC_DEBUG
  81. debug_flags = -D"DEBUG_HASH=$(shell ./scripts/basic/hash djb2 $(@D)$(modname))"\
  82. -D"DEBUG_HASH2=$(shell ./scripts/basic/hash r5 $(@D)$(modname))"
  83. else
  84. debug_flags =
  85. endif
  86. orig_c_flags = $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) \
  87. $(ccflags-y) $(CFLAGS_$(basetarget).o)
  88. _c_flags = $(filter-out $(CFLAGS_REMOVE_$(basetarget).o), $(orig_c_flags))
  89. _a_flags = $(KBUILD_CPPFLAGS) $(KBUILD_AFLAGS) \
  90. $(asflags-y) $(AFLAGS_$(basetarget).o)
  91. _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(@F))
  92. # If building the kernel in a separate objtree expand all occurrences
  93. # of -Idir to -I$(srctree)/dir except for absolute paths (starting with '/').
  94. ifeq ($(KBUILD_SRC),)
  95. __c_flags = $(_c_flags)
  96. __a_flags = $(_a_flags)
  97. __cpp_flags = $(_cpp_flags)
  98. else
  99. # -I$(obj) locates generated .h files
  100. # $(call addtree,-I$(obj)) locates .h files in srctree, from generated .c files
  101. # and locates generated .h files
  102. # FIXME: Replace both with specific CFLAGS* statements in the makefiles
  103. __c_flags = $(call addtree,-I$(obj)) $(call flags,_c_flags)
  104. __a_flags = $(call flags,_a_flags)
  105. __cpp_flags = $(call flags,_cpp_flags)
  106. endif
  107. c_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \
  108. $(__c_flags) $(modkern_cflags) \
  109. -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) \
  110. $(debug_flags)
  111. a_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \
  112. $(__a_flags) $(modkern_aflags)
  113. cpp_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \
  114. $(__cpp_flags)
  115. ld_flags = $(LDFLAGS) $(ldflags-y)
  116. # Finds the multi-part object the current object will be linked into
  117. modname-multi = $(sort $(foreach m,$(multi-used),\
  118. $(if $(filter $(subst $(obj)/,,$*.o), $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=))))
  119. # Shipped files
  120. # ===========================================================================
  121. quiet_cmd_shipped = SHIPPED $@
  122. cmd_shipped = cat $< > $@
  123. $(obj)/%:: $(src)/%_shipped
  124. $(call cmd,shipped)
  125. # Commands useful for building a boot image
  126. # ===========================================================================
  127. #
  128. # Use as following:
  129. #
  130. # target: source(s) FORCE
  131. # $(if_changed,ld/objcopy/gzip)
  132. #
  133. # and add target to extra-y so that we know we have to
  134. # read in the saved command line
  135. # Linking
  136. # ---------------------------------------------------------------------------
  137. quiet_cmd_ld = LD $@
  138. cmd_ld = $(LD) $(LDFLAGS) $(ldflags-y) $(LDFLAGS_$(@F)) \
  139. $(filter-out FORCE,$^) -o $@
  140. # Objcopy
  141. # ---------------------------------------------------------------------------
  142. quiet_cmd_objcopy = OBJCOPY $@
  143. cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
  144. # Gzip
  145. # ---------------------------------------------------------------------------
  146. quiet_cmd_gzip = GZIP $@
  147. cmd_gzip = gzip -f -9 < $< > $@
  148. # Bzip2
  149. # ---------------------------------------------------------------------------
  150. # Bzip2 does not include size in file... so we have to fake that
  151. size_append=$(CONFIG_SHELL) $(srctree)/scripts/bin_size
  152. quiet_cmd_bzip2 = BZIP2 $@
  153. cmd_bzip2 = (bzip2 -9 < $< && $(size_append) $<) > $@ || (rm -f $@ ; false)
  154. # Lzma
  155. # ---------------------------------------------------------------------------
  156. quiet_cmd_lzma = LZMA $@
  157. cmd_lzma = (lzma -9 -c $< && $(size_append) $<) >$@ || (rm -f $@ ; false)