Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
eab7efd1
Commit
eab7efd1
authored
Mar 25, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Fix test rules to allow parallel makes again.
parent
f7cc8f69
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
7 deletions
+11
-7
Makefile.in
Makefile.in
+1
-1
Maketest.rules.in
Maketest.rules.in
+2
-2
aclocal.m4
aclocal.m4
+4
-2
configure
configure
+4
-2
No files found.
Makefile.in
View file @
eab7efd1
...
...
@@ -127,7 +127,7 @@ uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__) dummy
# dependencies needed to build any dll or program
__tooldeps__
:
libs/port libs/wine libs/wpp
__builddeps__ __buildcrossdeps__
:
__tooldeps__ include
.PHONY
:
__tooldeps__ __builddeps__ __buildcrossdeps__
.PHONY
:
test crosstest
__tooldeps__ __builddeps__ __buildcrossdeps__
loader server
:
libs/port libs/wine tools
fonts
:
tools
...
...
Maketest.rules.in
View file @
eab7efd1
...
...
@@ -41,13 +41,13 @@ testlist.o: testlist.c $(TOPSRCDIR)/include/wine/test.h
# Rules for testing
check test:
:
$(TESTRESULTS)
check test: $(TESTRESULTS)
$(TESTRESULTS): $(MODULE)$(DLLEXT) ../$(TESTDLL)$(DLLEXT)
# Rules for cross-compiling tests
crosstest:
:
@CROSSTEST@
crosstest: @CROSSTEST@
$(CROSSTEST): $(CROSSOBJS) Makefile.in
$(CROSSWINEGCC) $(CROSSOBJS) -o $@ $(ALL_LIBS)
...
...
aclocal.m4
View file @
eab7efd1
...
...
@@ -306,9 +306,11 @@ $ac_dir/Makefile $ac_dir/__depend__: $ac_dir/Makefile.in config.status Maketest.
AS_VAR_IF([enable_tests],[no],,[wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
"all programs/winetest: $ac_dir
$ac_dir: $ac_dir/Makefile __builddeps__
crosstest:: $ac_dir/Makefile __buildcrossdeps__
crosstest .PHONY: $ac_dir/__crosstest__
$ac_dir/__crosstest__: $ac_dir/Makefile __buildcrossdeps__ dummy
@cd $ac_dir && \$(MAKE) crosstest
test::
test .PHONY: $ac_dir/__test__
$ac_dir/__test__: dummy
@cd $ac_dir && \$(MAKE) test
testclean::
\$(RM) $ac_dir/*.ok"])
...
...
configure
View file @
eab7efd1
...
...
@@ -14035,9 +14035,11 @@ else
wine_fn_append_rule ALL_MAKEFILE_DEPENDS
\
"all programs/winetest:
$ac_dir
$ac_dir
:
$ac_dir
/Makefile __builddeps__
crosstest::
$ac_dir
/Makefile __buildcrossdeps__
crosstest .PHONY:
$ac_dir
/__crosstest__
$ac_dir
/__crosstest__:
$ac_dir
/Makefile __buildcrossdeps__ dummy
@cd
$ac_dir
&&
\$
(MAKE) crosstest
test::
test .PHONY:
$ac_dir
/__test__
$ac_dir
/__test__: dummy
@cd
$ac_dir
&&
\$
(MAKE) test
testclean::
\$
(RM)
$ac_dir
/*.ok"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment