Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stefan Dösinger
wine
Commits
d6cc6ca2
Commit
d6cc6ca2
authored
15 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
kernel32: Compile .mc files to resources as independent files.
parent
d61f18ef
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Make.rules.in
+3
-2
3 additions, 2 deletions
Make.rules.in
dlls/kernel32/Makefile.in
+3
-3
3 additions, 3 deletions
dlls/kernel32/Makefile.in
dlls/kernel32/kernel.rc
+0
-29
0 additions, 29 deletions
dlls/kernel32/kernel.rc
with
6 additions
and
34 deletions
Make.rules.in
+
3
−
2
View file @
d6cc6ca2
...
...
@@ -118,7 +118,8 @@ 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) $(RC_SRCS:.rc=.res) $(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) $(MC_SRCS:.mc=.mc.res) $(EXTRA_OBJS)
LINTS = $(C_SRCS:.c=.ln)
...
...
@@ -318,7 +319,7 @@ $(MC_SRCS:.mc=.mc.rc): $(WMC)
$(IDL_GEN_HEADERS) $(IDL_GEN_C_SRCS) $(IDL_TLB_SRCS:.idl=.tlb): $(WIDL)
$(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC)
$(RC_SRCS:.rc=.res)
$(MC_SRCS:.mc=.mc.res)
$(RC_SRCS16:.rc=.res): $(WRC)
$(SUBDIRS): dummy
@cd $@ && $(MAKE)
...
...
This diff is collapsed.
Click to expand it.
dlls/kernel32/Makefile.in
+
3
−
3
View file @
d6cc6ca2
...
...
@@ -76,7 +76,9 @@ C_SRCS16 = \
registry16.c
\
toolhelp16.c
RC_SRCS
=
kernel.rc
RC_SRCS
=
\
locale_rc.rc
\
version.rc
RC_SRCS16
=
\
version16.rc
...
...
@@ -95,8 +97,6 @@ EXTRASUBDIRS = nls
@MAKE_DLL_RULES@
kernel.res
:
$(MC_SRCS:.mc=.mc.rc)
relay16asm.o
:
$(WINEBUILD)
$(
WINEBUILD
)
$(
WINEBUILDFLAGS
)
-o
$@
--relay16
...
...
This diff is collapsed.
Click to expand it.
dlls/kernel32/kernel.rc
deleted
100644 → 0
+
0
−
29
View file @
d61f18ef
/*
* Copyright 2000 Dave Pickles
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "locale_rc.rc"
#include "nls/winerr_deu.mc.rc"
#include "nls/winerr_enu.mc.rc"
#include "nls/winerr_fra.mc.rc"
#include "nls/winerr_kor.mc.rc"
#include "nls/winerr_nld.mc.rc"
#include "nls/winerr_nor.mc.rc"
#include "nls/winerr_plk.mc.rc"
#include "version.rc"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment