Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
305aca28
Commit
305aca28
authored
May 22, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Avoid creating an intermediate rc file for test binaries.
parent
5d19caf9
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
11 deletions
+6
-11
.gitignore
.gitignore
+0
-1
aclocal.m4
aclocal.m4
+2
-3
configure
configure
+2
-3
Makefile.in
programs/winetest/Makefile.in
+2
-3
make_makefiles
tools/make_makefiles
+0
-1
No files found.
.gitignore
View file @
305aca28
...
...
@@ -265,7 +265,6 @@ programs/winedbg/dbg.tab.c
programs/winedbg/dbg.tab.h
programs/winedbg/debug.yy.c
programs/winetest/*_test.exe
programs/winetest/*_test.rc
programs/winetest/build.nfo
programs/winetest/build.rc
programs/winhlp32/macro.lex.yy.c
...
...
aclocal.m4
View file @
305aca28
...
...
@@ -395,9 +395,8 @@ wine_fn_config_test ()
wine_fn_append_rule ALL_WINETEST_DEPENDS \
"$ac_name.exe: \$(top_builddir)/$ac_dir/$ac_name.exe$DLLEXT
cp \$(top_builddir)/$ac_dir/$ac_name.exe$DLLEXT \$[@] && \$(STRIP) \$[@]
$ac_name.rc:
echo \"$ac_name.exe TESTRES \\\"$ac_name.exe\\\"\" >\$[@] || (\$(RM) \$[@] && false)
$ac_name.res: $ac_name.rc $ac_name.exe"
$ac_name.res: $ac_name.exe
echo \"$ac_name.exe TESTRES \\\"$ac_name.exe\\\"\" | \$(LDPATH) \$(WRC) \$(RCFLAGS) -o \$[@]"
wine_fn_all_dir_rules $ac_dir Maketest.rules
AS_VAR_IF([enable_tests],[no],,[wine_fn_append_rule ALL_MAKEFILE_DEPENDS \
...
...
configure
View file @
305aca28
...
...
@@ -14861,9 +14861,8 @@ wine_fn_config_test ()
wine_fn_append_rule ALL_WINETEST_DEPENDS
\
"
$ac_name
.exe:
\$
(top_builddir)/
$ac_dir
/
$ac_name
.exe
$DLLEXT
cp
\$
(top_builddir)/
$ac_dir
/
$ac_name
.exe
$DLLEXT
\$
@ &&
\$
(STRIP)
\$
@
$ac_name
.rc:
echo
\"
$ac_name
.exe TESTRES
\\\"
$ac_name
.exe
\\\"\"
>
\$
@ || (
\$
(RM)
\$
@ && false)
$ac_name
.res:
$ac_name
.rc
$ac_name
.exe"
$ac_name
.res:
$ac_name
.exe
echo
\"
$ac_name
.exe TESTRES
\\\"
$ac_name
.exe
\\\"\"
|
\$
(LDPATH)
\$
(WRC)
\$
(RCFLAGS) -o
\$
@"
wine_fn_all_dir_rules
$ac_dir
Maketest.rules
if
test
"x
$enable_tests
"
=
xno
;
then
:
...
...
programs/winetest/Makefile.in
View file @
305aca28
...
...
@@ -15,13 +15,12 @@ RC_SRCS = \
SVG_SRCS
=
winetest.svg
TESTBINS
=
@ALL_TEST_BINARIES@
TESTRCS
=
build.rc
$
(
TESTBINS:.exe
=
.rc
)
EXTRA_OBJS
=
$
(
TESTRCS:.rc
=
.res
)
EXTRA_OBJS
=
build.res
$
(
TESTBINS:.exe
=
.res
)
@MAKE_PROG_RULES@
clean
::
$(RM)
build.
nfo winetest-dist.exe
$(TESTBINS)
$(TESTRC
S)
$(RM)
build.
rc build.nfo winetest-dist.exe
$(TESTBIN
S)
build.rc
:
dummy
build
=
"BUILD_INFO STRINGRES build.nfo STRINGTABLE { 1
\"
`
GIT_DIR
=
$(top_srcdir)
/.git git rev-parse HEAD 2>/dev/null
`
\"
}"
&&
(
echo
$$
build | cmp
-s
-
$@
)
||
echo
$$
build
>
$@
||
(
$(RM)
$@
&&
exit
1
)
...
...
tools/make_makefiles
View file @
305aca28
...
...
@@ -99,7 +99,6 @@ my @ignores = (
"include/stamp-h"
,
"msg.pot"
,
"programs/winetest/*_test.exe"
,
"programs/winetest/*_test.rc"
,
"programs/winetest/build.nfo"
,
"programs/winetest/build.rc"
,
"rsrc.pot"
,
...
...
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