From da430dcada1cb5f47cc65fc804d94b5b62b5aca6 Mon Sep 17 00:00:00 2001 From: yutaka Date: Fri, 27 Apr 2007 06:30:42 +0000 Subject: [PATCH] add vpath for .cpp and .s files git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/twl_wrapsdk/trunk@50 4ee2a332-4b2b-5046-8439-1ba90f034370 --- build/buildtools/modulerules | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/buildtools/modulerules b/build/buildtools/modulerules index 12ead4e..5a52f93 100644 --- a/build/buildtools/modulerules +++ b/build/buildtools/modulerules @@ -315,7 +315,9 @@ ifneq ($(NITRO_FORCE_BUILD),) # yutaka #VPATH = $(SRCDIR) -vpath %c $(foreach dir,$(SRCDIR),$(shell cygpath -u $(dir))) +vpath %.c $(foreach dir,$(SRCDIR),$(shell cygpath -u $(dir))) +vpath %.cpp $(foreach dir,$(SRCDIR),$(shell cygpath -u $(dir))) +vpath %.s $(foreach dir,$(SRCDIR),$(shell cygpath -u $(dir))) # ...CW style #CYGDRV ?= $(shell cygpath -u c:)/..