Makefile.rules 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # ===========================================================================
  2. # arch/um: Generic definitions
  3. # ===========================================================================
  4. USER_SINGLE_OBJS := \
  5. $(foreach f,$(patsubst %.o,%,$(obj-y) $(obj-m)),$($(f)-objs))
  6. USER_OBJS += $(filter %_user.o,$(obj-y) $(obj-m) $(USER_SINGLE_OBJS))
  7. USER_OBJS := $(foreach file,$(USER_OBJS),$(obj)/$(file))
  8. $(USER_OBJS) : c_flags = -Wp,-MD,$(depfile) $(USER_CFLAGS) \
  9. $(CFLAGS_$(notdir $@))
  10. # The stubs and unmap.o can't try to call mcount or update basic block data
  11. define unprofile
  12. $(patsubst -pg,,$(patsubst -fprofile-arcs -ftest-coverage,,$(1)))
  13. endef
  14. # The stubs and unmap.o can't try to call mcount or update basic block data
  15. define unprofile
  16. $(patsubst -pg,,$(patsubst -fprofile-arcs -ftest-coverage,,$(1)))
  17. endef
  18. quiet_cmd_make_link = SYMLINK $@
  19. cmd_make_link = ln -sf $(srctree)/arch/$(SUBARCH)/$($(notdir $@)-dir)/$(notdir $@) $@
  20. # this needs to be before the foreach, because targets does not accept
  21. # complete paths like $(obj)/$(f). To make sure this works, use a := assignment
  22. # or we will get $(obj)/$(f) in the "targets" value.
  23. # Also, this forces you to use the := syntax when assigning to targets.
  24. # Otherwise the line below will cause an infinite loop (if you don't know why,
  25. # just do it).
  26. targets := $(targets) $(SYMLINKS)
  27. SYMLINKS := $(foreach f,$(SYMLINKS),$(obj)/$(f))
  28. $(SYMLINKS): FORCE
  29. $(call if_changed,make_link)