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
fd75880b
Commit
fd75880b
authored
Aug 25, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Install the static import libraries too.
parent
633b12d5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
10 deletions
+19
-10
Makefile.in
dlls/Makefile.in
+10
-7
make_dlls
dlls/make_dlls
+9
-3
No files found.
dlls/Makefile.in
View file @
fd75880b
...
...
@@ -177,27 +177,30 @@ BASEDIRS = \
wsock32
\
wtsapi32
IMPLIBSUBDIRS
=
\
dxerr8
\
dxerr9
\
dxguid
\
strmiids
\
uuid
\
winecrt0
SUBDIRS
=
\
$(BASEDIRS)
\
$(IMPLIBSUBDIRS)
\
d3d8
\
d3d9
\
d3dx8
\
ddraw
\
dxerr8
\
dxerr9
\
dxguid
\
glu32
\
glut32
\
opengl32
\
strmiids
\
uuid
\
winecrt0
\
wined3d
\
x11drv
BUILDSUBDIRS
=
$(BASEDIRS)
$(EXTRADIRS)
INSTALLSUBDIRS
=
$(BUILDSUBDIRS)
INSTALLSUBDIRS
=
$(BUILDSUBDIRS)
$(IMPLIBSUBDIRS)
@MAKE_RULES@
...
...
dlls/make_dlls
View file @
fd75880b
...
...
@@ -139,8 +139,14 @@ foreach my $dir (sort values %directories)
printf
NEWMAKE
" \\\n\t%s"
,
$dir
;
}
printf
NEWMAKE
"\n\nSUBDIRS = \\\n\t\$(BASEDIRS)"
;
foreach
my
$dir
(
sort
(
keys
%
special_dlls
,
values
%
staticlib_dirs
))
printf
NEWMAKE
"\n\nIMPLIBSUBDIRS ="
;
foreach
my
$dir
(
sort
values
%
staticlib_dirs
)
{
printf
NEWMAKE
" \\\n\t%s"
,
$dir
;
}
printf
NEWMAKE
"\n\nSUBDIRS = \\\n\t\$(BASEDIRS) \\\n\t\$(IMPLIBSUBDIRS)"
;
foreach
my
$dir
(
sort
keys
%
special_dlls
)
{
printf
NEWMAKE
" \\\n\t%s"
,
$dir
;
}
...
...
@@ -149,7 +155,7 @@ printf NEWMAKE <<EOF;
BUILDSUBDIRS = \$(BASEDIRS) \$(EXTRADIRS)
INSTALLSUBDIRS = \$(BUILDSUBDIRS)
INSTALLSUBDIRS = \$(BUILDSUBDIRS)
\$(IMPLIBSUBDIRS)
EOF
################################################################
...
...
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