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
9188bd64
Commit
9188bd64
authored
Aug 21, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winetest: Include the build info also in the standard build.
parent
740e4ffb
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
29 deletions
+12
-29
.gitignore
.gitignore
+1
-0
Makefile.in
programs/winetest/Makefile.in
+10
-7
dist.rc
programs/winetest/dist.rc
+0
-22
make_makefiles
tools/make_makefiles
+1
-0
No files found.
.gitignore
View file @
9188bd64
...
@@ -258,6 +258,7 @@ programs/winedbg/debug.yy.c
...
@@ -258,6 +258,7 @@ programs/winedbg/debug.yy.c
programs/winedbg/winedbg.man
programs/winedbg/winedbg.man
programs/winetest/*_test.exe
programs/winetest/*_test.exe
programs/winetest/*_test.rc
programs/winetest/*_test.rc
programs/winetest/build.nfo
programs/winetest/build.rc
programs/winetest/build.rc
programs/winhlp32/macro.lex.yy.c
programs/winhlp32/macro.lex.yy.c
programs/wscript/ihost.h
programs/wscript/ihost.h
...
...
programs/winetest/Makefile.in
View file @
9188bd64
...
@@ -24,13 +24,16 @@ EXTRA_OBJS = $(TESTRCS:.rc=.res)
...
@@ -24,13 +24,16 @@ EXTRA_OBJS = $(TESTRCS:.rc=.res)
@MAKE_PROG_RULES@
@MAKE_PROG_RULES@
@ALL_WINETEST_DEPENDS@
clean
::
clean
::
$(RM)
winetest-dist.exe
$(TESTBINS)
$(TESTRCS)
$(RM)
build.nfo
winetest-dist.exe
$(TESTBINS)
$(TESTRCS)
build.rc
:
dummy
build.rc
:
dummy
build
=
"STRINGTABLE { 1
\"
`
GIT_DIR
=
$(TOPSRCDIR)
/.git git rev-parse HEAD 2>/dev/null
`
\"
}"
&&
(
echo
$$
build | cmp
-s
-
$@
)
||
echo
$$
build
>
$@
||
(
$(RM)
$@
&&
exit
1
)
build
=
"BUILD_INFO STRINGRES build.nfo STRINGTABLE { 1
\"
`
GIT_DIR
=
$(TOPSRCDIR)
/.git git rev-parse HEAD 2>/dev/null
`
\"
}"
&&
(
echo
$$
build | cmp
-s
-
$@
)
||
echo
$$
build
>
$@
||
(
$(RM)
$@
&&
exit
1
)
build.nfo
:
-
$(CC)
-v
2>
$@
build.res
:
build.nfo
# Rules for building distributable executable
# Rules for building distributable executable
...
@@ -38,8 +41,8 @@ build.rc: dummy
...
@@ -38,8 +41,8 @@ build.rc: dummy
dist
:
winetest-dist.exe$(DLLEXT)
dist
:
winetest-dist.exe$(DLLEXT)
winetest-dist.exe
winetest-dist.exe.so
:
$(OBJS) dist.res Makefile.in
winetest-dist.exe
$(DLLEXT)
:
winetest.exe$(DLLEXT)
$(WINEGCC)
$(APPMODE)
$(OBJS)
dist.res
-o
$@
-L
$(DLLDIR)
$
(
DELAYIMPORTS:%
=
-Wb
,-d%
)
$(ALL_LIBS)
cp
winetest.exe
$(DLLEXT)
$@
-
upx
-9
-qqq
$@
-
upx
-9
-qqq
$@
dist.res
:
build.nfo
@ALL_WINETEST_DEPENDS@
programs/winetest/dist.rc
deleted
100644 → 0
View file @
740e4ffb
/*
* Resources for the binary we distribute to testers
*
* Copyright 2004 Ferenc Wagner
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
/* @makedep: build.nfo */
BUILD_INFO STRINGRES "build.nfo"
tools/make_makefiles
View file @
9188bd64
...
@@ -96,6 +96,7 @@ my @ignores = (
...
@@ -96,6 +96,7 @@ my @ignores = (
"include/stamp-h"
,
"include/stamp-h"
,
"programs/winetest/*_test.exe"
,
"programs/winetest/*_test.exe"
,
"programs/winetest/*_test.rc"
,
"programs/winetest/*_test.rc"
,
"programs/winetest/build.nfo"
,
"programs/winetest/build.rc"
,
"programs/winetest/build.rc"
,
"tools/makedep"
,
"tools/makedep"
,
);
);
...
...
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