Make.rules: Replace RC_TLB by IDL_TLB_SRCS as tlb files can be used for other things than resources.

This commit is contained in:
Alexandre Julliard 2006-07-29 11:45:24 +02:00
parent 293d7ab688
commit 853d193782
3 changed files with 5 additions and 5 deletions

View file

@ -169,7 +169,7 @@ filter:
$(RC_BINARIES): $(BIN2RES) $(RC_BINSRC)
$(BIN2RES) -f -o $@ $(SRCDIR)/$(RC_BINSRC)
$(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(RC_BINARIES) $(RC_TLB)
$(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res): $(WRC) $(RC_BINARIES) $(IDL_TLB_SRCS:.idl=.tlb)
# Rules for makefile
@ -221,7 +221,7 @@ $(EXTRASUBDIRS:%=%/__clean__): dummy
testclean:: $(SUBDIRS:%=%/__testclean__)
clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
$(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(IDL_SRCS:.idl=.h) $(PROGRAMS) $(RC_BINARIES) $(RC_TLB) $(MANPAGES)
$(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(RC_SRCS16:.rc=.res) $(MC_SRCS:.mc=.mc.rc) $(IDL_SRCS:.idl=.h) $(IDL_TLB_SRCS:.idl=.tlb) $(PROGRAMS) $(RC_BINARIES) $(MANPAGES)
.PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
@ -270,7 +270,7 @@ $(MC_SRCS:.mc=.mc.rc): $(WMC)
$(IDL_SRCS:.idl=.h): $(WIDL)
$(RC_TLB:.idl=.tlb): $(WIDL)
$(IDL_TLB_SRCS:.idl=.tlb): $(WIDL)
$(SUBDIRS): dummy
@cd $@ && $(MAKE)

View file

@ -6,7 +6,7 @@ MODULE = stdole2.tlb
IMPORTS = kernel32
RC_SRCS = rsrc.rc
RC_TLB = std_ole_v2.tlb
IDL_TLB_SRCS = std_ole_v2.idl
@MAKE_DLL_RULES@

View file

@ -6,7 +6,7 @@ MODULE = stdole32.tlb
IMPORTS = kernel32
RC_SRCS = rsrc.rc
RC_TLB = std_ole_v1.tlb
IDL_TLB_SRCS = std_ole_v1.idl
@MAKE_DLL_RULES@