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