Makefile.rules (bc95f3669f5e6f63cf0b84fe4922c3c6dd4aa775) | Makefile.rules (2b8232ce512105e28453f301d1510de8363bccd1) |
---|---|
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)) --- 14 unchanged lines hidden (view full) --- 23 24# 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 29ifdef subarch-obj-y 30obj-y += subarch.o | 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)) --- 14 unchanged lines hidden (view full) --- 23 24# 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 29ifdef subarch-obj-y 30obj-y += subarch.o |
31subarch-y = $(addprefix ../../$(SUBARCH)/,$(subarch-obj-y)) | 31subarch-y = $(addprefix ../../$(HEADER_ARCH)/,$(subarch-obj-y)) |
32endif | 32endif |