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
83a21c68
Commit
83a21c68
authored
May 26, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: Use the Wine import libraries when compiling with MinGW.
parent
0e3eda34
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
Maketest.rules.in
dlls/Maketest.rules.in
+2
-2
Makefile.in
dlls/msvcrt/tests/Makefile.in
+2
-1
Makefile.in
dlls/msvcrtd/tests/Makefile.in
+2
-1
No files found.
dlls/Maketest.rules.in
View file @
83a21c68
...
...
@@ -33,12 +33,12 @@ all: $(TESTPROGRAM)
# Rules for .so main module
$(MODULE).so: $(OBJS) $(RC_SRCS:.rc=.res) Makefile.in
$(WINEGCC) -B$(TOOLSDIR)/tools/winebuild -mconsole $(OBJS) $(RC_SRCS:.rc=.res) -o $@ $(LIBPORT) $(ALL_LIBS)
$(WINEGCC) -B$(TOOLSDIR)/tools/winebuild -mconsole $(
APPMODE) $(
OBJS) $(RC_SRCS:.rc=.res) -o $@ $(LIBPORT) $(ALL_LIBS)
# Rules for .exe main module
$(MODULE): $(OBJS) $(RCOBJS) Makefile.in
$(CC) $(
OBJS) $(RCOBJS) -o $@
$(ALL_LIBS)
$(CC) $(
APPMODE) $(OBJS) $(RCOBJS) -o $@ -L$(DLLDIR) $(IMPORTS:%=-L$(DLLDIR)/%)
$(ALL_LIBS)
# Rules for building test list
...
...
dlls/msvcrt/tests/Makefile.in
View file @
83a21c68
...
...
@@ -3,7 +3,8 @@ TOPOBJDIR = ../../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
TESTDLL
=
msvcrt.dll
IMPORTS
=
msvcrt kernel32
APPMODE
=
-mno-cygwin
IMPORTS
=
kernel32
MODCFLAGS
=
@BUILTINFLAG@
EXTRAINCL
=
-I
$(TOPSRCDIR)
/include/msvcrt
-I
$(SRCDIR)
/..
...
...
dlls/msvcrtd/tests/Makefile.in
View file @
83a21c68
...
...
@@ -3,7 +3,8 @@ TOPOBJDIR = ../../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
TESTDLL
=
msvcrtd.dll
IMPORTS
=
msvcrt kernel32
APPMODE
=
-mno-cygwin
IMPORTS
=
kernel32
EXTRAINCL
=
-I
$(TOPSRCDIR)
/include/msvcrt
MODCFLAGS
=
@BUILTINFLAG@
...
...
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