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
1a1f9bff
Commit
1a1f9bff
authored
May 06, 2003
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
May 06, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it easy to use something other than wrc to compile resources.
parent
4f6caf6c
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
12 deletions
+13
-12
Make.rules.in
Make.rules.in
+6
-5
Makefile.in
dlls/gdi/Makefile.in
+1
-1
Makefile.in
dlls/kernel/Makefile.in
+1
-1
Makefile.in
dlls/shell32/Makefile.in
+1
-1
Makefile.in
dlls/user/Makefile.in
+3
-3
Makefile.in
programs/winhelp/Makefile.in
+1
-1
No files found.
Make.rules.in
View file @
1a1f9bff
...
...
@@ -65,7 +65,10 @@ MAKEDEP = $(TOOLSDIR)/tools/makedep
WRC = $(TOOLSDIR)/tools/wrc/wrc
WMC = $(TOOLSDIR)/tools/wmc/wmc
WIDL = $(TOOLSDIR)/tools/widl/widl
WRCFLAGS = --nostdinc $(INCLUDES) $(EXTRAWRCFLAGS)
RC = $(WRC)
RC16 = $(WRC)
RCFLAGS = --nostdinc $(INCLUDES) $(EXTRARCFLAGS)
RC16FLAGS = -O res16 $(RCFLAGS)
LDPATH = @LDPATH@
DLLDIR = $(TOPOBJDIR)/dlls
LIBDIR = $(TOPOBJDIR)/libs
...
...
@@ -117,7 +120,7 @@ LINTS = $(C_SRCS:.c=.ln)
$(LDPATH) $(WMC) -i -U -H /dev/null -o $@ $<
.rc.res:
$(LDPATH) $(
WRC) $(WRCFLAGS) -o
$@ $<
$(LDPATH) $(
RC) $(RCFLAGS) -fo
$@ $<
.res.res.o:
$(WINDRES) -i $< -o $@
...
...
@@ -248,9 +251,7 @@ $(SUBDIRS:%=%/__crosstest__): dummy
# Misc. rules
$(RC_SRCS:.rc=.res): $(WRC)
$(RC_SRCS16:.rc=.res): $(WRC)
$(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC)
$(MC_SRCS:.mc=.mc.rc): $(WMC)
...
...
dlls/gdi/Makefile.in
View file @
1a1f9bff
...
...
@@ -83,6 +83,6 @@ 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
version16.res
:
version16.rc
$(LDPATH)
$(
WRC)
$(WRCFLAGS)
-o
$@
-O
res16
$(SRCDIR)
/version16.rc
$(LDPATH)
$(
RC16)
$(RC16FLAGS)
-fo
$@
$(SRCDIR)
/version16.rc
### Dependencies:
dlls/kernel/Makefile.in
View file @
1a1f9bff
...
...
@@ -69,6 +69,6 @@ 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
version16.res
:
version16.rc
$(LDPATH)
$(
WRC)
$(WRCFLAGS)
-o
$@
-O
res16
$(SRCDIR)
/version16.rc
$(LDPATH)
$(
RC16)
$(RC16FLAGS)
-fo
$@
$(SRCDIR)
/version16.rc
### Dependencies:
dlls/shell32/Makefile.in
View file @
1a1f9bff
...
...
@@ -68,7 +68,7 @@ uninstall::
# Special rules for 16-bit resource files
version16.res
:
version16.rc
$(LDPATH)
$(
WRC)
$(WRCFLAGS)
-o
$@
-O
res16
$(SRCDIR)
/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
...
...
dlls/user/Makefile.in
View file @
1a1f9bff
...
...
@@ -120,12 +120,12 @@ mouse.spec.c: mouse.spec resources/mouse.res
$(WINEBUILD)
$(DEFS)
-o
$@
--main-module
$(MODULE)
--res
resources/mouse.res
--spec
$(SRCDIR)
/mouse.spec
resources/display.res
:
resources/display.rc
$(LDPATH)
$(
WRC)
$(WRCFLAGS)
-o
$@
-O
res16
$(SRCDIR)
/resources/display.rc
$(LDPATH)
$(
RC16)
$(RC16FLAGS)
-fo
$@
$(SRCDIR)
/resources/display.rc
resources/mouse.res
:
resources/mouse.rc
$(LDPATH)
$(
WRC)
$(WRCFLAGS)
-o
$@
-O
res16
$(SRCDIR)
/resources/mouse.rc
$(LDPATH)
$(
RC16)
$(RC16FLAGS)
-fo
$@
$(SRCDIR)
/resources/mouse.rc
resources/version16.res
:
resources/version16.rc
$(LDPATH)
$(
WRC)
$(WRCFLAGS)
-o
$@
-O
res16
$(SRCDIR)
/resources/version16.rc
$(LDPATH)
$(
RC16)
$(RC16FLAGS)
-fo
$@
$(SRCDIR)
/resources/version16.rc
### Dependencies:
programs/winhelp/Makefile.in
View file @
1a1f9bff
...
...
@@ -16,7 +16,7 @@ C_SRCS = \
EXTRA_SRCS
=
macro.lex.l
EXTRA_OBJS
=
@LEX_OUTPUT_ROOT@.o
EXTRA
W
RCFLAGS
=
-DWINELIB
EXTRARCFLAGS
=
-DWINELIB
RC_SRCS
=
rsrc.rc
...
...
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