Commit 5ed78e55 authored by Masahiro Yamada's avatar Masahiro Yamada

alpha: add $(src)/ rather than $(obj)/ to make source file path

$(ev6-y)divide.S is a source file, not a build-time generated file.
So, it should be prefixed with $(src)/ rather than $(obj)/.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent bd74370b
......@@ -46,11 +46,11 @@ AFLAGS___remqu.o = -DREM
AFLAGS___divlu.o = -DDIV -DINTSIZE
AFLAGS___remlu.o = -DREM -DINTSIZE
$(obj)/__divqu.o: $(obj)/$(ev6-y)divide.S
$(obj)/__divqu.o: $(src)/$(ev6-y)divide.S
$(cmd_as_o_S)
$(obj)/__remqu.o: $(obj)/$(ev6-y)divide.S
$(obj)/__remqu.o: $(src)/$(ev6-y)divide.S
$(cmd_as_o_S)
$(obj)/__divlu.o: $(obj)/$(ev6-y)divide.S
$(obj)/__divlu.o: $(src)/$(ev6-y)divide.S
$(cmd_as_o_S)
$(obj)/__remlu.o: $(obj)/$(ev6-y)divide.S
$(obj)/__remlu.o: $(src)/$(ev6-y)divide.S
$(cmd_as_o_S)
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