Module: wine Branch: master Commit: aabd2b54b2c538b74d2eb1026c7afdf2f910f253 URL: https://source.winehq.org/git/wine.git/?a=commit;h=aabd2b54b2c538b74d2eb1026... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Sun Oct 11 21:35:47 2020 +0200 makefiles: List all possible targets in the stub makefiles. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- tools/makedep.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/makedep.c b/tools/makedep.c index df3805591e..2eed620b42 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -4029,6 +4029,7 @@ static void output_stub_makefile( struct makefile *make ) } output_filenames( targets ); + output_filenames( make->clean_files ); output( ":\n" ); output( "\t(a)cd %s && $(MAKE) %s/$@\n", get_relative_path( make->obj_dir, "" ), make->obj_dir ); output( ".PHONY:" );