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
16cd8619
Commit
16cd8619
authored
Sep 24, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved DLLFLAGS to a separate variable instead of including it in
DEFS.
parent
b48d8124
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
31 additions
and
23 deletions
+31
-23
Make.rules.in
Make.rules.in
+2
-1
Makedll.rules.in
dlls/Makedll.rules.in
+3
-2
Maketest.rules.in
dlls/Maketest.rules.in
+3
-2
Makefile.in
dlls/gdi/Makefile.in
+1
-1
Makefile.in
dlls/kernel/Makefile.in
+2
-2
Makefile.in
dlls/ntdll/Makefile.in
+1
-1
Makefile.in
dlls/shell32/Makefile.in
+1
-1
Makefile.in
dlls/user/Makefile.in
+3
-3
Makefile.in
include/Makefile.in
+1
-1
Makelib.rules.in
libs/Makelib.rules.in
+2
-1
Makefile.in
libs/port/Makefile.in
+2
-1
Makefile.in
libs/uuid/Makefile.in
+2
-1
Makeprog.rules.in
programs/Makeprog.rules.in
+3
-2
Makefile.in
programs/avitools/Makefile.in
+5
-4
No files found.
Make.rules.in
View file @
16cd8619
...
...
@@ -54,8 +54,9 @@ LINT = @LINT@
LINTFLAGS = @LINTFLAGS@
INCLUDES = -I$(SRCDIR) -I. -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include $(EXTRAINCL)
EXTRACFLAGS = @EXTRACFLAGS@
ALLCFLAGS = $(INCLUDES) $(DEFS) $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS)
ALLCFLAGS = $(INCLUDES) $(DEFS) $(
DLLFLAGS) $(
EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS)
ALLLINTFLAGS = $(INCLUDES) $(DEFS) $(LINTFLAGS)
IDLFLAGS = $(INCLUDES) $(DEFS) $(EXTRAIDLFLAGS)
MKINSTALLDIRS= $(TOPSRCDIR)/tools/mkinstalldirs -m 755
WINAPI_CHECK = $(TOPSRCDIR)/tools/winapi_check/winapi_check
WINEWRAPPER = $(TOPSRCDIR)/tools/winewrapper
...
...
dlls/Makedll.rules.in
View file @
16cd8619
...
...
@@ -9,7 +9,8 @@
# plus all variables required by the global Make.rules.in
#
DEFS = @DLLFLAGS@ -D__WINESRC__ $(EXTRADEFS)
DEFS = -D__WINESRC__ $(EXTRADEFS)
DLLFLAGS = @DLLFLAGS@
DLLEXT = @DLLEXT@
MAINSPEC = $(MODULE:%.dll=%).spec
SPEC_DEF = $(MAINSPEC).def
...
...
@@ -25,7 +26,7 @@ all: $(MODULE)$(DLLEXT) $(SUBDIRS)
# Rules for .so files
$(MAINSPEC).c: $(MAINSPEC) $(RC_SRCS:.rc=.res) $(SYMBOLFILE) $(IMPORTLIBS) $(WINEBUILD)
$(WINEBUILD) $(DEFS) -o $@ --spec $(SRCDIR)/$(MAINSPEC) $(RC_SRCS:.rc=.res) $(SYMBOLFILE) $(DLLMAIN:%=--entry %) -L$(DLLDIR) $(DELAYIMPORTS:%=-d%) $(IMPORTS:%=-l%)
$(WINEBUILD) $(DEFS)
$(DLLFLAGS)
-o $@ --spec $(SRCDIR)/$(MAINSPEC) $(RC_SRCS:.rc=.res) $(SYMBOLFILE) $(DLLMAIN:%=--entry %) -L$(DLLDIR) $(DELAYIMPORTS:%=-d%) $(IMPORTS:%=-l%)
$(MODULE).so: $(MAINSPEC).o $(ALL_OBJS) Makefile.in
$(LDSHARED) $(LDDLLFLAGS) $(MAINSPEC).o $(ALL_OBJS) -o $@ -L$(DLLDIR) $(LDIMPORTS:%=-l%) $(ALL_LIBS) -lc
...
...
dlls/Maketest.rules.in
View file @
16cd8619
...
...
@@ -9,7 +9,8 @@
# plus all variables required by the global Make.rules.in
#
DEFS = @DLLFLAGS@ $(EXTRADEFS)
DEFS = $(EXTRADEFS)
DLLFLAGS = @DLLFLAGS@
LDDLLFLAGS = @LDDLLFLAGS@
MODULE = $(TESTDLL:%.dll=%)_test.exe
...
...
@@ -36,7 +37,7 @@ all: $(TESTPROGRAM)
# Rule for main module spec file
$(MODULE).spec.c: $(RC_SRCS:.rc=.res) $(OBJS) $(IMPORTLIBS) $(WINEBUILD)
$(WINEBUILD) $(DEFS) -o $@ --exe $(MODULE) --exe-mode cui $(RC_SRCS:.rc=.res) $(OBJS) -L$(DLLDIR) $(IMPORTS:%=-l%)
$(WINEBUILD) $(DEFS)
$(DLLFLAGS)
-o $@ --exe $(MODULE) --exe-mode cui $(RC_SRCS:.rc=.res) $(OBJS) -L$(DLLDIR) $(IMPORTS:%=-l%)
# Rules for .so main module
...
...
dlls/gdi/Makefile.in
View file @
16cd8619
...
...
@@ -81,7 +81,7 @@ EXTRASUBDIRS = \
# Special rules for 16-bit resource and spec files
gdi.exe.spec.c
:
gdi.exe.spec version16.res
$(WINEBUILD)
$(DEFS)
-o
$@
--heap
65520
--main-module
$(MODULE)
--res
version16.res
--spec
$(SRCDIR)
/gdi.exe.spec
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--heap
65520
--main-module
$(MODULE)
--res
version16.res
--spec
$(SRCDIR)
/gdi.exe.spec
version16.res
:
version16.rc
$(LDPATH)
$(RC16)
$(RC16FLAGS)
-fo
$@
$(SRCDIR)
/version16.rc
...
...
dlls/kernel/Makefile.in
View file @
16cd8619
...
...
@@ -93,12 +93,12 @@ EXTRASUBDIRS = messages nls
kernel.res
:
$(MC_SRCS:.mc=.mc.rc)
relay16asm.s
:
$(WINEBUILD)
$(WINEBUILD)
$(DEFS)
-o
$@
--relay16
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--relay16
# Special rules for 16-bit resource and spec files
krnl386.exe.spec.c
:
krnl386.exe.spec version16.res
$(WINEBUILD)
$(DEFS)
-o
$@
--dll-name
kernel
--main-module
$(MODULE)
--res
version16.res
--spec
$(SRCDIR)
/krnl386.exe.spec
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--dll-name
kernel
--main-module
$(MODULE)
--res
version16.res
--spec
$(SRCDIR)
/krnl386.exe.spec
version16.res
:
version16.rc
$(LDPATH)
$(RC16)
$(RC16FLAGS)
-fo
$@
$(SRCDIR)
/version16.rc
...
...
dlls/ntdll/Makefile.in
View file @
16cd8619
...
...
@@ -86,7 +86,7 @@ EXTRASUBDIRS = \
@MAKE_DLL_RULES@
relay32.s
:
$(WINEBUILD)
$(WINEBUILD)
$(DEFS)
-o
$@
--relay32
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--relay32
clean
::
$(RM)
$(ASM_SRCS)
...
...
dlls/shell32/Makefile.in
View file @
16cd8619
...
...
@@ -66,6 +66,6 @@ version16.res: version16.rc
$(LDPATH)
$(RC16)
$(RC16FLAGS)
-fo
$@
$(SRCDIR)
/version16.rc
shell.spec.c
:
shell.spec version16.res
$(WINEBUILD)
$(DEFS)
-o
$@
--main-module
$(MODULE)
--res
version16.res
--spec
$(SRCDIR)
/shell.spec
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--main-module
$(MODULE)
--res
version16.res
--spec
$(SRCDIR)
/shell.spec
### Dependencies:
dlls/user/Makefile.in
View file @
16cd8619
...
...
@@ -111,13 +111,13 @@ EXTRASUBDIRS = \
# Special rules for 16-bit resource and spec files
user.exe.spec.c
:
user.exe.spec resources/version16.res
$(WINEBUILD)
$(DEFS)
-o
$@
--heap
65520
--main-module
$(MODULE)
--res
resources/version16.res
--spec
$(SRCDIR)
/user.exe.spec
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--heap
65520
--main-module
$(MODULE)
--res
resources/version16.res
--spec
$(SRCDIR)
/user.exe.spec
display.spec.c
:
display.spec resources/display.res
$(WINEBUILD)
$(DEFS)
-o
$@
--main-module
$(MODULE)
--res
resources/display.res
--spec
$(SRCDIR)
/display.spec
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--main-module
$(MODULE)
--res
resources/display.res
--spec
$(SRCDIR)
/display.spec
mouse.spec.c
:
mouse.spec resources/mouse.res
$(WINEBUILD)
$(DEFS)
-o
$@
--main-module
$(MODULE)
--res
resources/mouse.res
--spec
$(SRCDIR)
/mouse.spec
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--main-module
$(MODULE)
--res
resources/mouse.res
--spec
$(SRCDIR)
/mouse.spec
resources/display.res
:
resources/display.rc
$(LDPATH)
$(RC16)
$(RC16FLAGS)
-fo
$@
$(SRCDIR)
/resources/display.rc
...
...
include/Makefile.in
View file @
16cd8619
...
...
@@ -254,7 +254,7 @@ EXTRASUBDIRS = bitmaps msvcrt msvcrt/sys wine
.SUFFIXES
:
.idl .h
.idl.h
:
$(WIDL)
$(
DEF
S)
-b
-h
-H
$@
$<
$(WIDL)
$(
IDLFLAG
S)
-b
-h
-H
$@
$<
.PHONY
:
idl
...
...
libs/Makelib.rules.in
View file @
16cd8619
...
...
@@ -7,7 +7,8 @@
# plus all variables required by the global Make.rules.in
#
DEFS = @DLLFLAGS@ $(EXTRADEFS)
DEFS = $(EXTRADEFS)
DLLFLAGS = @DLLFLAGS@
LIBEXT = @LIBEXT@
LIBNAME = lib$(LIBRARY)
DEFNAME = $(LIBRARY).def
...
...
libs/port/Makefile.in
View file @
16cd8619
DEFS
=
@DLLFLAGS@
-D__WINESRC__
DEFS
=
-D__WINESRC__
DLLFLAGS
=
@DLLFLAGS@
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
libs/uuid/Makefile.in
View file @
16cd8619
DEFS
=
@DLLFLAGS@
-D__WINESRC__
DEFS
=
-D__WINESRC__
DLLFLAGS
=
@DLLFLAGS@
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
...
...
programs/Makeprog.rules.in
View file @
16cd8619
...
...
@@ -9,7 +9,8 @@
# plus all variables required by the global Make.rules.in
#
DEFS = @DLLFLAGS@ $(EXTRADEFS)
DEFS = $(EXTRADEFS)
DLLFLAGS = @DLLFLAGS@
LDDLLFLAGS = @LDDLLFLAGS@
ALL_OBJS = $(OBJS) $(MODULE).dbg.o
ALL_LIBS = $(LIBWINE) $(EXTRALIBS) $(LIBPORT) $(LDFLAGS) $(LIBS)
...
...
@@ -24,7 +25,7 @@ all: $(MODULE)$(DLLEXT) $(BASEMODULE)$(EXEEXT)
# Rule for main module spec file
$(MODULE).spec.c: $(RC_SRCS:.rc=.res) $(ALL_OBJS) $(WINEBUILD)
$(WINEBUILD) $(DEFS) -o $@ --exe $(MODULE) $(APPMODE:%=--exe-mode %) $(RC_SRCS:.rc=.res) $(ALL_OBJS) -L$(DLLDIR) $(DELAYIMPORTS:%=-d%) $(IMPORTS:%=-l%)
$(WINEBUILD) $(DEFS)
$(DLLFLAGS)
-o $@ --exe $(MODULE) $(APPMODE:%=--exe-mode %) $(RC_SRCS:.rc=.res) $(ALL_OBJS) -L$(DLLDIR) $(DELAYIMPORTS:%=-d%) $(IMPORTS:%=-l%)
# Rules for .so main module
...
...
programs/avitools/Makefile.in
View file @
16cd8619
DEFS
=
@DLLFLAGS@
$(EXTRADEFS)
DEFS
=
$(EXTRADEFS)
DLLFLAGS
=
@DLLFLAGS@
LDDLLFLAGS
=
@LDDLLFLAGS@
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
...
...
@@ -18,13 +19,13 @@ C_SRCS = \
all
:
$(PROGRAMS:%=%$(DLLEXT)) $(PROGRAMS:.exe=$(EXEEXT))
aviinfo.exe.spec.c
:
aviinfo.o $(WINEBUILD)
$(WINEBUILD)
$(DEFS)
-o
$@
--exe
aviinfo.exe
--exe-mode
gui aviinfo.o
-L
$(DLLDIR)
-lkernel32
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--exe
aviinfo.exe
--exe-mode
gui aviinfo.o
-L
$(DLLDIR)
-lkernel32
aviplay.exe.spec.c
:
aviplay.o $(WINEBUILD)
$(WINEBUILD)
$(DEFS)
-o
$@
--exe
aviplay.exe
--exe-mode
gui aviplay.o
-L
$(DLLDIR)
-lddraw
-lkernel32
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--exe
aviplay.exe
--exe-mode
gui aviplay.o
-L
$(DLLDIR)
-lddraw
-lkernel32
icinfo.exe.spec.c
:
icinfo.o $(WINEBUILD)
$(WINEBUILD)
$(DEFS)
-o
$@
--exe
icinfo.exe
--exe-mode
gui icinfo.o
-L
$(DLLDIR)
-lmsvfw32
-lkernel32
$(WINEBUILD)
$(DEFS)
$(DLLFLAGS)
-o
$@
--exe
icinfo.exe
--exe-mode
gui icinfo.o
-L
$(DLLDIR)
-lmsvfw32
-lkernel32
aviinfo.exe.so
:
aviinfo.o aviinfo.exe.spec.o
$(LDSHARED)
$(LDDLLFLAGS)
-o
$@
aviinfo.o aviinfo.exe.spec.o
$(ALL_LIBS)
-lc
...
...
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