Commit 733c5b0b authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Andrei Vagin

nmk: Align continuations

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@gmail.com>
Reviewed-by: 's avatarDmitry Safonov <0x7f454c46@gmail.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent edbac23f
...@@ -162,8 +162,8 @@ endef ...@@ -162,8 +162,8 @@ endef
ifdef builtin-target ifdef builtin-target
$(eval $(call gen-ld-target-rule, \ $(eval $(call gen-ld-target-rule, \
$(builtin-target), \ $(builtin-target), \
$(ldflags-y), \ $(ldflags-y), \
$(obj-y) $(__nmk-makefile-deps), \ $(obj-y) $(__nmk-makefile-deps), \
$(obj-y) $(call objectify,$(obj-e)))) $(obj-y) $(call objectify,$(obj-e))))
endif endif
...@@ -171,7 +171,7 @@ ifdef lib-target ...@@ -171,7 +171,7 @@ ifdef lib-target
$(eval $(call gen-ar-target-rule, \ $(eval $(call gen-ar-target-rule, \
$(lib-target), \ $(lib-target), \
$(ARFLAGS) $(arflags-y), \ $(ARFLAGS) $(arflags-y), \
$(lib-y) $(__nmk-makefile-deps), \ $(lib-y) $(__nmk-makefile-deps), \
$(lib-y) $(call objectify,$(lib-e)))) $(lib-y) $(call objectify,$(lib-e))))
endif endif
...@@ -181,9 +181,9 @@ define gen-custom-target-rule ...@@ -181,9 +181,9 @@ define gen-custom-target-rule
ifneq ($($(1)-obj-y),) ifneq ($($(1)-obj-y),)
$(eval $(call gen-ld-target-rule, \ $(eval $(call gen-ld-target-rule, \
$(obj)/$(1).built-in.o, \ $(obj)/$(1).built-in.o, \
$(ldflags-y) $(LDFLAGS_$(1)), \ $(ldflags-y) $(LDFLAGS_$(1)), \
$(call objectify,$($(1)-obj-y)) \ $(call objectify,$($(1)-obj-y)) \
$(__nmk-makefile-deps), \ $(__nmk-makefile-deps), \
$(call objectify,$($(1)-obj-y)) \ $(call objectify,$($(1)-obj-y)) \
$(call objectify,$($(1)-obj-e)))) $(call objectify,$($(1)-obj-e))))
all-y += $(obj)/$(1).built-in.o all-y += $(obj)/$(1).built-in.o
...@@ -196,7 +196,7 @@ define gen-custom-target-rule ...@@ -196,7 +196,7 @@ define gen-custom-target-rule
$(obj)/$(1).lib.a, \ $(obj)/$(1).lib.a, \
$(ARFLAGS) $($(1)-arflags-y), \ $(ARFLAGS) $($(1)-arflags-y), \
$(call objectify,$($(1)-lib-y)) \ $(call objectify,$($(1)-lib-y)) \
$(__nmk-makefile-deps), \ $(__nmk-makefile-deps), \
$(call objectify,$($(1)-lib-y))) \ $(call objectify,$($(1)-lib-y))) \
$(call objectify,$($(1)-lib-e))) $(call objectify,$($(1)-lib-e)))
all-y += $(obj)/$(1).lib.a all-y += $(obj)/$(1).lib.a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment