You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
613 B
22 lines
613 B
clean-files += unmap_tmp.o unmap_fin.o unmap.o
|
|
|
|
ifdef CONFIG_MODE_TT
|
|
|
|
#Always build unmap_fin.o
|
|
extra-y += unmap_fin.o
|
|
#Do dependency tracking for unmap.o (it will be always built, but won't get the tracking unless we use this).
|
|
targets += unmap.o
|
|
|
|
#XXX: partially copied from arch/um/scripts/Makefile.rules
|
|
$(obj)/unmap.o: _c_flags = $(call unprofile,$(CFLAGS))
|
|
|
|
quiet_cmd_wrapld = LD $@
|
|
define cmd_wrapld
|
|
$(LD) $(LDFLAGS) -r -o $(obj)/unmap_tmp.o $< ; \
|
|
$(OBJCOPY) $(UML_OBJCOPYFLAGS) $(obj)/unmap_tmp.o $@ -G switcheroo
|
|
endef
|
|
|
|
$(obj)/unmap_fin.o : $(obj)/unmap.o FORCE
|
|
$(call if_changed,wrapld)
|
|
|
|
endif
|
|
|