From: Chuck Ebbert <76306.1226@compuserve.com> Add -fverbose-asm to i386 Makefile rule for building .s files. This makes the assembler output much more readable for humans. Suggested by Der Herr Hofrat Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com> Cc: Sam Ravnborg Signed-off-by: Andrew Morton --- scripts/Makefile.build | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/Makefile.build~kbuild-add-fverbose-asm-to-i386-makefile scripts/Makefile.build --- devel/scripts/Makefile.build~kbuild-add-fverbose-asm-to-i386-makefile 2006-03-07 23:58:03.000000000 -0800 +++ devel-akpm/scripts/Makefile.build 2006-03-07 23:58:03.000000000 -0800 @@ -129,7 +129,7 @@ $(multi-objs-y:.o=.s) : modname = $(mo $(multi-objs-y:.o=.lst) : modname = $(modname-multi) quiet_cmd_cc_s_c = CC $(quiet_modtag) $@ -cmd_cc_s_c = $(CC) $(c_flags) -S -o $@ $< +cmd_cc_s_c = $(CC) $(c_flags) -fverbose-asm -S -o $@ $< %.s: %.c FORCE $(call if_changed_dep,cc_s_c) _