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
68a1f4d0
Commit
68a1f4d0
authored
Jun 02, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Add resource files to the standard object files list.
parent
a2d88ab3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
10 deletions
+8
-10
Make.rules.in
Make.rules.in
+1
-1
Makedll.rules.in
dlls/Makedll.rules.in
+1
-1
Maketest.rules.in
dlls/Maketest.rules.in
+3
-3
Makeprog.rules.in
programs/Makeprog.rules.in
+2
-2
Makefile.in
programs/winetest/Makefile.in
+1
-1
dist.rc
programs/winetest/dist.rc
+0
-2
No files found.
Make.rules.in
View file @
68a1f4d0
...
...
@@ -118,7 +118,7 @@ IDL_GEN_HEADERS = $(IDL_H_SRCS:.idl=.h) $(IDL_C_SRCS:.idl=.h) $(IDL_I_SRCS:.idl=
CLEAN_TARGETS = $(IDL_GEN_C_SRCS) $(IDL_GEN_HEADERS) $(IDL_TLB_SRCS:.idl=.tlb) $(IDL_P_SRCS:%=dlldata.c) \
$(BISON_SRCS:.y=.tab.c) $(BISON_SRCS:.y=.tab.h) $(LEX_SRCS:.l=.yy.c) $(MC_SRCS:.mc=.mc.rc)
OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_SRCS:.c=.o) $(EXTRA_OBJS)
OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(IDL_GEN_C_SRCS:.c=.o) $(
RC_SRCS:.rc=.res) $(
EXTRA_OBJS)
LINTS = $(C_SRCS:.c=.ln)
...
...
dlls/Makedll.rules.in
View file @
68a1f4d0
...
...
@@ -16,7 +16,7 @@ BASEMODULE = $(MODULE:%.dll=%)
MAINSPEC = $(BASEMODULE).spec
SPEC_DEF = $(BASEMODULE).def
WIN16_FILES = $(SPEC_SRCS16:.spec=.spec.o) $(C_SRCS16:.c=.o) $(EXTRA_OBJS16)
ALL_OBJS = @WIN16_FILES@ $(OBJS)
$(RC_SRCS:.rc=.res)
ALL_OBJS = @WIN16_FILES@ $(OBJS)
ALL_LIBS = $(LIBPORT) $(EXTRALIBS) $(LDFLAGS) $(LIBS)
IMPLIB_OBJS = $(IMPLIB_SRCS:.c=.o)
IMPORTLIBFILE = $(IMPORTLIB:%=lib%.@IMPLIBEXT@)
...
...
dlls/Maketest.rules.in
View file @
68a1f4d0
...
...
@@ -29,8 +29,8 @@ CROSSWINEGCC = $(TOOLSDIR)/tools/winegcc/winegcc @CROSSTARGETFLAGS@ -B$(TOOLSDIR
all: $(TESTPROGRAM)
$(MODULE) $(MODULE).so: $(OBJS)
$(RC_SRCS:.rc=.res)
Makefile.in
$(WINEGCC) $(APPMODE) $(OBJS)
$(RC_SRCS:.rc=.res)
-o $@ $(LIBPORT) $(ALL_LIBS)
$(MODULE) $(MODULE).so: $(OBJS) Makefile.in
$(WINEGCC) $(APPMODE) $(OBJS) -o $@ $(LIBPORT) $(ALL_LIBS)
# Rules for building test list
...
...
@@ -47,7 +47,7 @@ $(TESTRESULTS): $(MODULE)$(DLLEXT) ../$(TESTDLL)$(DLLEXT)
# Rules for cross-compiling tests
CROSSOBJS = $(OBJS:.o=.cross.o)
$(RC_SRCS:.rc=.res)
CROSSOBJS = $(OBJS:.o=.cross.o)
.SUFFIXES: .cross.o
...
...
programs/Makeprog.rules.in
View file @
68a1f4d0
...
...
@@ -19,8 +19,8 @@ INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(dlldir) $(DESTDIR)$(mandir)/man$(p
all: $(MODULE)$(DLLEXT)
$(MODULE) $(MODULE).so: $(OBJS)
$(RC_SRCS:.rc=.res)
Makefile.in
$(WINEGCC) $(APPMODE) $(OBJS)
$(RC_SRCS:.rc=.res)
-o $@ $(ALL_LIBS) $(DELAYIMPORTS:%=-Wb,-d%)
$(MODULE) $(MODULE).so: $(OBJS) Makefile.in
$(WINEGCC) $(APPMODE) $(OBJS) -o $@ $(ALL_LIBS) $(DELAYIMPORTS:%=-Wb,-d%)
# Rules for testing
...
...
programs/winetest/Makefile.in
View file @
68a1f4d0
...
...
@@ -50,7 +50,7 @@ winetest-dist.exe winetest-dist.exe.so: $(OBJS) dist.res Makefile.in
$(WINEGCC)
$(APPMODE)
$(OBJS)
dist.res
-o
$@
-L
$(DLLDIR)
$
(
DELAYIMPORTS:%
=
-Wb
,-d%
)
$(ALL_LIBS)
-
upx
-9
-qqq
$@
dist.res
:
winetest.rc tests.rc build.nfo winetest.ico $(TESTBINS)
dist.res
:
build.nfo
@DEPENDENCIES@
# everything below this line is overwritten by make depend
...
...
programs/winetest/dist.rc
View file @
68a1f4d0
...
...
@@ -18,7 +18,5 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "winetest.rc"
/* @makedep: build.nfo */
BUILD_INFO STRINGRES "build.nfo"
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