Commit db790455 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

List 16-bit resources separately as RC_SRCS16.

parent d28955d8
......@@ -271,7 +271,7 @@ $(SUBDIRS:%=%/__depend__): $(MAKEDEP) dummy
cd `dirname $@` && $(MAKE) depend
depend: $(MAKEDEP) $(GEN_C_SRCS) $(SUBDIRS:%=%/__depend__)
$(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(MC_SRCS) $(EXTRA_SRCS) -C. $(GEN_C_SRCS)
$(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(RC_SRCS16) $(MC_SRCS) $(EXTRA_SRCS) -C. $(GEN_C_SRCS)
# Rules for cleaning
......@@ -282,7 +282,7 @@ $(EXTRASUBDIRS:%=%/__clean__): dummy
-cd `dirname $@` && $(RM) $(CLEAN_FILES)
clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
$(RM) $(CLEAN_FILES) $(GEN_C_SRCS) $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS)
$(RM) $(CLEAN_FILES) $(GEN_C_SRCS) $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(PROGRAMS)
# Rules for installing
......@@ -300,6 +300,8 @@ $(GLUE:.c=.glue.c): $(WINEBUILD) $(TOPSRCDIR)/include/builtin16.h
$(RC_SRCS:.rc=.res): $(WRC)
$(RC_SRCS16:.rc=.res): $(WRC)
$(MC_SRCS:.mc=.mc.rc): $(WMC)
$(SUBDIRS): dummy
......
......@@ -15,7 +15,9 @@ C_SRCS = \
wing.c
RC_SRCS= \
version.rc \
version.rc
RC_SRCS16= \
version16.rc
GLUE = printdrv.c thunk.c
......
......@@ -24,7 +24,9 @@ C_SRCS = \
wowthunk.c
RC_SRCS = \
kernel.rc \
kernel.rc
RC_SRCS16 = \
version16.rc
MC_SRCS = \
......
......@@ -24,9 +24,11 @@ C_SRCS = \
wsprintf.c
RC_SRCS = \
resources/user32.rc
RC_SRCS16 = \
resources/display.rc \
resources/mouse.rc \
resources/user32.rc \
resources/version16.rc
GLUE = thunk.c
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment