blob: b3fbf125709b83d5a1bf7814fab538455aa95f26 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001# ===========================================================================
2# arch/um: Generic definitions
3# ===========================================================================
4
Jeff Dike2ba49172005-05-05 16:15:33 -07005USER_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))
Linus Torvalds1da177e2005-04-16 15:20:36 -07008USER_OBJS := $(foreach file,$(USER_OBJS),$(obj)/$(file))
9
Paolo 'Blaisorblade' Giarrusso54a8a222005-10-09 21:37:26 +020010$(USER_OBJS) $(USER_OBJS:.o=.i) $(USER_OBJS:.o=.s) $(USER_OBJS:.o=.lst): \
11 c_flags = -Wp,-MD,$(depfile) $(USER_CFLAGS) $(CFLAGS_$(notdir $@))
viro@ZenIV.linux.org.uk2624f122005-09-09 17:14:12 +010012$(USER_OBJS): cmd_checksrc =
13$(USER_OBJS): quiet_cmd_checksrc =
14$(USER_OBJS): cmd_force_checksrc =
15$(USER_OBJS): quiet_cmd_force_checksrc =
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Paolo 'Blaisorblade' Giarrusso60b27372005-06-21 17:16:25 -070018# 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
Jeff Diked67b5692005-07-07 17:56:49 -070024# The stubs and unmap.o can't try to call mcount or update basic block data
25define unprofile
26 $(patsubst -pg,,$(patsubst -fprofile-arcs -ftest-coverage,,$(1)))
27endef
28
Bodo Stroesser858259c2005-11-07 00:58:55 -080029# cmd_make_link checks to see if the $(foo-dir) variable starts with a /. If
30# so, it's considered to be a path relative to $(srcdir) rather than
31# $(srcdir)/arch/$(SUBARCH). This is because x86_64 wants to get ldt.c from
32# arch/um/sys-i386 rather than arch/i386 like the other borrowed files. So,
33# it sets $(ldt.c-dir) to /arch/um/sys-i386.
Linus Torvalds1da177e2005-04-16 15:20:36 -070034quiet_cmd_make_link = SYMLINK $@
Bodo Stroesser858259c2005-11-07 00:58:55 -080035cmd_make_link = rm -f $@; ln -sf $(srctree)$(if $(filter-out /%,$($(notdir $@)-dir)),/arch/$(SUBARCH))/$($(notdir $@)-dir)/$(notdir $@) $@
Paolo 'Blaisorblade' Giarrusso776cfeb2005-05-05 16:15:18 -070036
37# this needs to be before the foreach, because targets does not accept
Jeff Dike36ca1192005-06-13 15:52:10 -070038# complete paths like $(obj)/$(f). To make sure this works, use a := assignment
Paolo 'Blaisorblade' Giarrusso776cfeb2005-05-05 16:15:18 -070039# or we will get $(obj)/$(f) in the "targets" value.
40# Also, this forces you to use the := syntax when assigning to targets.
41# Otherwise the line below will cause an infinite loop (if you don't know why,
42# just do it).
43
44targets := $(targets) $(SYMLINKS)
45
46SYMLINKS := $(foreach f,$(SYMLINKS),$(obj)/$(f))
47
48$(SYMLINKS): FORCE
49 $(call if_changed,make_link)