From: Jonathan Nieder Date: Sun, 22 Jul 2012 23:47:26 +0000 (-0500) Subject: Makefile: fix location of listing produced by "make subdir/foo.s" X-Git-Tag: v1.7.12-rc0~2^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/1015cc4225542ba69cf1627a743978f304a29c71?hp=1015cc4225542ba69cf1627a743978f304a29c71 Makefile: fix location of listing produced by "make subdir/foo.s" When I invoke "make block-sha1/sha1.s", 'make' runs $(CC) -S without specifying where it should put its output and the output ends up in ./sha1.s. Confusing. Add an -o option to the .s rule to fix this. We were already doing that for most compiler invocations but had forgotten it for the assembler listings. Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano ---