Commit f82b3e57 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

makefiles: Make it possible to only build the tests.

parent 54d3e484
...@@ -3577,7 +3577,7 @@ static void output_subdirs( struct makefile *make ) ...@@ -3577,7 +3577,7 @@ static void output_subdirs( struct makefile *make )
} }
if (winetest_deps.count) if (winetest_deps.count)
{ {
output( "programs/winetest:" ); output( "buildtests programs/winetest:" );
output_filenames( winetest_deps ); output_filenames( winetest_deps );
output( "\n" ); output( "\n" );
output( "check test:" ); output( "check test:" );
...@@ -3588,6 +3588,7 @@ static void output_subdirs( struct makefile *make ) ...@@ -3588,6 +3588,7 @@ static void output_subdirs( struct makefile *make )
strarray_add( &make->phony_targets, target ); strarray_add( &make->phony_targets, target );
} }
output( "\n" ); output( "\n" );
strarray_add( &make->phony_targets, "buildtests" );
strarray_add( &make->phony_targets, "check" ); strarray_add( &make->phony_targets, "check" );
strarray_add( &make->phony_targets, "test" ); strarray_add( &make->phony_targets, "test" );
} }
......
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