kernel32: Compile .mc files to resources as independent files.
This commit is contained in:
parent
d61f18ef06
commit
d6cc6ca2c1
|
@ -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) \
|
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)
|
$(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)
|
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)
|
$(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
|
$(SUBDIRS): dummy
|
||||||
@cd $@ && $(MAKE)
|
@cd $@ && $(MAKE)
|
||||||
|
|
|
@ -76,7 +76,9 @@ C_SRCS16 = \
|
||||||
registry16.c \
|
registry16.c \
|
||||||
toolhelp16.c
|
toolhelp16.c
|
||||||
|
|
||||||
RC_SRCS = kernel.rc
|
RC_SRCS = \
|
||||||
|
locale_rc.rc \
|
||||||
|
version.rc
|
||||||
|
|
||||||
RC_SRCS16 = \
|
RC_SRCS16 = \
|
||||||
version16.rc
|
version16.rc
|
||||||
|
@ -95,8 +97,6 @@ EXTRASUBDIRS = nls
|
||||||
|
|
||||||
@MAKE_DLL_RULES@
|
@MAKE_DLL_RULES@
|
||||||
|
|
||||||
kernel.res: $(MC_SRCS:.mc=.mc.rc)
|
|
||||||
|
|
||||||
relay16asm.o: $(WINEBUILD)
|
relay16asm.o: $(WINEBUILD)
|
||||||
$(WINEBUILD) $(WINEBUILDFLAGS) -o $@ --relay16
|
$(WINEBUILD) $(WINEBUILDFLAGS) -o $@ --relay16
|
||||||
|
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
/*
|
|
||||||
* 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"
|
|
Loading…
Reference in New Issue