xref: /linux/arch/um/scripts/Makefile.rules (revision 34b8c399dc04c8e51f014b73458e654570698597)
1# ===========================================================================
2# arch/um: Generic definitions
3# ===========================================================================
4
5USER_SINGLE_OBJS := \
6	$(foreach f,$(patsubst %.o,%,$(obj-y) $(obj-m)),$($(f)-objs))
7USER_OBJS += $(filter %_user.o,$(obj-y) $(obj-m)  $(USER_SINGLE_OBJS))
8USER_OBJS := $(foreach file,$(USER_OBJS),$(obj)/$(file))
9
10$(USER_OBJS) $(USER_OBJS:.o=.i) $(USER_OBJS:.o=.s) $(USER_OBJS:.o=.lst): \
11	c_flags = -Wp,-MD,$(depfile) $(USER_CFLAGS) $(CFLAGS_$(notdir $@))
12$(USER_OBJS): cmd_checksrc =
13$(USER_OBJS): quiet_cmd_checksrc =
14$(USER_OBJS): cmd_force_checksrc =
15$(USER_OBJS): quiet_cmd_force_checksrc =
16
17
18# The stubs and unmap.o can't try to call mcount or update basic block data
19define unprofile
20	$(patsubst -pg,,$(patsubst -fprofile-arcs -ftest-coverage,,$(1)))
21endef
22
23
24# cmd_make_link checks to see if the $(foo-dir) variable starts with a /.  If
25# so, it's considered to be a path relative to $(srcdir) rather than
26# $(srcdir)/arch/$(SUBARCH).  This is because x86_64 wants to get ldt.c from
27# arch/um/sys-i386 rather than arch/i386 like the other borrowed files.  So,
28# it sets $(ldt.c-dir) to /arch/um/sys-i386.
29quiet_cmd_make_link = SYMLINK $@
30cmd_make_link       = rm -f $@; ln -sf $(srctree)$(if $(filter-out /%,$($(notdir $@)-dir)),/arch/$(SUBARCH))/$($(notdir $@)-dir)/$(notdir $@) $@
31
32# this needs to be before the foreach, because targets does not accept
33# complete paths like $(obj)/$(f). To make sure this works, use a := assignment
34# or we will get $(obj)/$(f) in the "targets" value.
35# Also, this forces you to use the := syntax when assigning to targets.
36# Otherwise the line below will cause an infinite loop (if you don't know why,
37# just do it).
38
39targets := $(targets) $(SYMLINKS)
40
41SYMLINKS := $(foreach f,$(SYMLINKS),$(obj)/$(f))
42
43$(SYMLINKS): FORCE
44	$(call if_changed,make_link)
45