Commit 444025d7 authored by Alexandre Julliard's avatar Alexandre Julliard

makefiles: Add tool dependencies for winegcc and winebuild.

parent ffd2e484
...@@ -2683,6 +2683,8 @@ static struct strarray output_sources( const struct makefile *make ) ...@@ -2683,6 +2683,8 @@ static struct strarray output_sources( const struct makefile *make )
output_filenames_obj_dir( make, object_files ); output_filenames_obj_dir( make, object_files );
output_filenames_obj_dir( make, res_files ); output_filenames_obj_dir( make, res_files );
output_filenames( dep_libs ); output_filenames( dep_libs );
output_filename( tools_path( make, "winebuild" ));
output_filename( tools_path( make, "winegcc" ));
output( "\n" ); output( "\n" );
output( "\t%s -o $@", tools_path( make, "winegcc" )); output( "\t%s -o $@", tools_path( make, "winegcc" ));
output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" ))); output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
...@@ -2907,6 +2909,8 @@ static struct strarray output_sources( const struct makefile *make ) ...@@ -2907,6 +2909,8 @@ static struct strarray output_sources( const struct makefile *make )
output_filenames_obj_dir( make, object_files ); output_filenames_obj_dir( make, object_files );
output_filenames_obj_dir( make, res_files ); output_filenames_obj_dir( make, res_files );
output_filenames( dep_libs ); output_filenames( dep_libs );
output_filename( tools_path( make, "winebuild" ));
output_filename( tools_path( make, "winegcc" ));
output( "\n" ); output( "\n" );
if (!make->disabled) if (!make->disabled)
...@@ -2929,6 +2933,8 @@ static struct strarray output_sources( const struct makefile *make ) ...@@ -2929,6 +2933,8 @@ static struct strarray output_sources( const struct makefile *make )
output_filenames_obj_dir( make, crossobj_files ); output_filenames_obj_dir( make, crossobj_files );
output_filenames_obj_dir( make, res_files ); output_filenames_obj_dir( make, res_files );
output_filenames( dep_libs ); output_filenames( dep_libs );
output_filename( tools_path( make, "winebuild" ));
output_filename( tools_path( make, "winegcc" ));
output( "\n" ); output( "\n" );
output( "\t%s -o $@ -b %s", tools_path( make, "winegcc" ), crosstarget ); output( "\t%s -o $@ -b %s", tools_path( make, "winegcc" ), crosstarget );
output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" ))); output_filename( strmake( "-B%s", tools_dir_path( make, "winebuild" )));
......
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