blob: 7459d09c233e37f99b840b4454ea2d295fd5c72f [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
Jeff Dike2ba49172005-05-05 16:15:33 -070010$(USER_OBJS) : c_flags = -Wp,-MD,$(depfile) $(USER_CFLAGS) \
11 $(CFLAGS_$(notdir $@))
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Paolo 'Blaisorblade' Giarrusso60b27372005-06-21 17:16:25 -070013# The stubs and unmap.o can't try to call mcount or update basic block data
14define unprofile
15 $(patsubst -pg,,$(patsubst -fprofile-arcs -ftest-coverage,,$(1)))
16endef
17
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019quiet_cmd_make_link = SYMLINK $@
Paolo 'Blaisorblade' Giarrusso776cfeb2005-05-05 16:15:18 -070020cmd_make_link = ln -sf $(srctree)/arch/$(SUBARCH)/$($(notdir $@)-dir)/$(notdir $@) $@
21
22# this needs to be before the foreach, because targets does not accept
Jeff Dike36ca1192005-06-13 15:52:10 -070023# complete paths like $(obj)/$(f). To make sure this works, use a := assignment
Paolo 'Blaisorblade' Giarrusso776cfeb2005-05-05 16:15:18 -070024# or we will get $(obj)/$(f) in the "targets" value.
25# Also, this forces you to use the := syntax when assigning to targets.
26# Otherwise the line below will cause an infinite loop (if you don't know why,
27# just do it).
28
29targets := $(targets) $(SYMLINKS)
30
31SYMLINKS := $(foreach f,$(SYMLINKS),$(obj)/$(f))
32
33$(SYMLINKS): FORCE
34 $(call if_changed,make_link)