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
e2d96342
Commit
e2d96342
authored
Jun 29, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Use the defined external lib variables also when building the libs themselves.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d461cca1
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
20 additions
and
8 deletions
+20
-8
Makefile.in
include/Makefile.in
+1
-0
Makefile.in
libs/faudio/Makefile.in
+1
-1
Makefile.in
libs/gsm/Makefile.in
+1
-1
Makefile.in
libs/jxr/Makefile.in
+2
-1
Makefile.in
libs/lcms2/Makefile.in
+1
-1
Makefile.in
libs/mpg123/Makefile.in
+1
-1
Makefile.in
libs/tiff/Makefile.in
+1
-1
Makefile.in
libs/vkd3d/Makefile.in
+1
-1
makedep.c
tools/makedep.c
+11
-1
No files found.
include/Makefile.in
View file @
e2d96342
...
...
@@ -429,6 +429,7 @@ SOURCES = \
mimeole.idl
\
minidumpapiset.h
\
minmax.h
\
minschannel.h
\
mlang.idl
\
mmc.idl
\
mmddk.h
\
...
...
libs/faudio/Makefile.in
View file @
e2d96342
EXTLIB
=
libfaudio.a
EXTRAINCL
=
-I
$(srcdir)
/include
EXTRAINCL
=
$(FAUDIO_PE_CFLAGS)
EXTRADEFS
=
-DFAUDIO_WIN32_PLATFORM
-DHAVE_WMADEC
-DNDEBUG
C_SRCS
=
\
...
...
libs/gsm/Makefile.in
View file @
e2d96342
EXTLIB
=
libgsm.a
EXTRAINCL
=
-I
$(srcdir)
/inc
EXTRAINCL
=
$(GSM_PE_CFLAGS)
EXTRADEFS
=
-DWAV49
C_SRCS
=
\
...
...
libs/jxr/Makefile.in
View file @
e2d96342
EXTLIB
=
libjxr.a
EXTRAINCL
=
-I
$(srcdir)
/jxrgluelib
-I
$(srcdir)
/image/sys
-DDISABLE_PERF_MEASUREMENT
EXTRAINCL
=
$(JXR_PE_CFLAGS)
EXTRADEFS
=
-DDISABLE_PERF_MEASUREMENT
C_SRCS
=
\
image/decode/JXRTranscode.c
\
...
...
libs/lcms2/Makefile.in
View file @
e2d96342
EXTLIB
=
liblcms2.a
EXTRAINCL
=
-I
$(srcdir)
/include
EXTRAINCL
=
$(LCMS2_PE_CFLAGS)
C_SRCS
=
\
src/cmsalpha.c
\
...
...
libs/mpg123/Makefile.in
View file @
e2d96342
EXTLIB
=
libmpg123.a
EXTRAINCL
=
-I
$(srcdir)
/src
-I
$(srcdir)
/src/compat
-I
$(srcdir)
/src/libmpg123
EXTRAINCL
=
-I
$(srcdir)
/src
-I
$(srcdir)
/src/compat
$(MPG123_PE_CFLAGS)
EXTRADEFS
=
-DOPT_GENERIC_DITHER
-DREAL_IS_FLOAT
-DNO_CATCHSIGNAL
-DMPG123_NO_LARGENAME
C_SRCS
=
\
...
...
libs/tiff/Makefile.in
View file @
e2d96342
EXTLIB
=
libtiff.a
EXTRAINCL
=
-I
$(srcdir)
/libtiff
$(JPEG_PE_CFLAGS)
$(ZLIB_PE_CFLAGS)
EXTRAINCL
=
$(TIFF_PE_CFLAGS)
$(JPEG_PE_CFLAGS)
$(ZLIB_PE_CFLAGS)
C_SRCS
=
\
libtiff/tif_aux.c
\
...
...
libs/vkd3d/Makefile.in
View file @
e2d96342
EXTLIB
=
libvkd3d.a
EXTRAINCL
=
-I
$(srcdir)
/include
-I
$(srcdir)
/include/private
-I
$(srcdir)
/libs/vkd3d
-I
$(srcdir)
/libs/vkd3d-shader
EXTRAINCL
=
$(VKD3D_PE_CFLAGS)
-I
$(srcdir)
/include/private
-I
$(srcdir)
/libs/vkd3d
-I
$(srcdir)
/libs/vkd3d-shader
EXTRADEFS
=
\
-DWINE_NO_NAMELESS_EXTENSION
\
-DCONST_VTABLE
\
...
...
tools/makedep.c
View file @
e2d96342
...
...
@@ -4152,10 +4152,20 @@ static void load_sources( struct makefile *make )
value
=
get_expanded_make_var_array
(
make
,
"EXTRAINCL"
);
for
(
i
=
0
;
i
<
value
.
count
;
i
++
)
{
if
(
!
strncmp
(
value
.
str
[
i
],
"-I"
,
2
))
strarray_add_uniq
(
&
make
->
include_paths
,
value
.
str
[
i
]
+
2
);
{
const
char
*
dir
=
value
.
str
[
i
]
+
2
;
if
(
!
strncmp
(
dir
,
"./"
,
2
))
{
dir
+=
2
;
while
(
*
dir
==
'/'
)
dir
++
;
}
strarray_add_uniq
(
&
make
->
include_paths
,
dir
);
}
else
if
(
!
strncmp
(
value
.
str
[
i
],
"-D"
,
2
)
||
!
strncmp
(
value
.
str
[
i
],
"-U"
,
2
))
strarray_add_uniq
(
&
make
->
define_args
,
value
.
str
[
i
]
);
}
strarray_addall
(
&
make
->
define_args
,
get_expanded_make_var_array
(
make
,
"EXTRADEFS"
));
strarray_add
(
&
make
->
include_args
,
strmake
(
"-I%s"
,
obj_dir_path
(
make
,
""
)));
...
...
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