Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # =========================================================================== |
| 2 | # arch/um: Generic definitions |
| 3 | # =========================================================================== |
| 4 | |
Jeff Dike | 2ba4917 | 2005-05-05 16:15:33 -0700 | [diff] [blame] | 5 | USER_SINGLE_OBJS := \ |
| 6 | $(foreach f,$(patsubst %.o,%,$(obj-y) $(obj-m)),$($(f)-objs)) |
| 7 | USER_OBJS += $(filter %_user.o,$(obj-y) $(obj-m) $(USER_SINGLE_OBJS)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | USER_OBJS := $(foreach file,$(USER_OBJS),$(obj)/$(file)) |
| 9 | |
Jeff Dike | 2ba4917 | 2005-05-05 16:15:33 -0700 | [diff] [blame] | 10 | $(USER_OBJS) : c_flags = -Wp,-MD,$(depfile) $(USER_CFLAGS) \ |
| 11 | $(CFLAGS_$(notdir $@)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
Paolo 'Blaisorblade' Giarrusso | 60b2737 | 2005-06-21 17:16:25 -0700 | [diff] [blame] | 13 | # The stubs and unmap.o can't try to call mcount or update basic block data |
| 14 | define unprofile |
| 15 | $(patsubst -pg,,$(patsubst -fprofile-arcs -ftest-coverage,,$(1))) |
| 16 | endef |
| 17 | |
| 18 | |
Jeff Dike | d67b569 | 2005-07-07 17:56:49 -0700 | [diff] [blame^] | 19 | # The stubs and unmap.o can't try to call mcount or update basic block data |
| 20 | define unprofile |
| 21 | $(patsubst -pg,,$(patsubst -fprofile-arcs -ftest-coverage,,$(1))) |
| 22 | endef |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | quiet_cmd_make_link = SYMLINK $@ |
Paolo 'Blaisorblade' Giarrusso | 776cfeb | 2005-05-05 16:15:18 -0700 | [diff] [blame] | 25 | cmd_make_link = ln -sf $(srctree)/arch/$(SUBARCH)/$($(notdir $@)-dir)/$(notdir $@) $@ |
| 26 | |
| 27 | # this needs to be before the foreach, because targets does not accept |
Jeff Dike | 36ca119 | 2005-06-13 15:52:10 -0700 | [diff] [blame] | 28 | # complete paths like $(obj)/$(f). To make sure this works, use a := assignment |
Paolo 'Blaisorblade' Giarrusso | 776cfeb | 2005-05-05 16:15:18 -0700 | [diff] [blame] | 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, |
| 32 | # just do it). |
| 33 | |
| 34 | targets := $(targets) $(SYMLINKS) |
| 35 | |
| 36 | SYMLINKS := $(foreach f,$(SYMLINKS),$(obj)/$(f)) |
| 37 | |
| 38 | $(SYMLINKS): FORCE |
| 39 | $(call if_changed,make_link) |