mirror of
https://github.com/rvtr/twl_wrapsdk.git
synced 2025-10-31 06:11:10 -04:00
fix 'No rule to make target' error when the file name is changed.
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/twl_wrapsdk/trunk@32 4ee2a332-4b2b-5046-8439-1ba90f034370
This commit is contained in:
parent
596955566f
commit
4f4b201172
@ -180,6 +180,12 @@ endif
|
||||
|
||||
TWL_LIBS ?= $(addsuffix $(TWL_LIBSUFFIX).a,$(TWL_LIBS_BASE))
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# CYGWIN TOOLS
|
||||
#
|
||||
|
||||
CAT := cat
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
### NITRO-commondefs
|
||||
#
|
||||
|
||||
@ -269,10 +269,14 @@ endif
|
||||
#
|
||||
# Generate dependency files
|
||||
#
|
||||
DEPEND_RULE = $(QUOTE)/ARM_EABI_Support/d;s/\\x0D//g;s/\\\\\\([^ ]\\)/\\/\\1/g;$(QUOTE)
|
||||
DEPEND_RULE = $(QUOTE)/ARM_EABI_Support/d;s/\\x0D//g;s/\\\\\\([^ ]\\)/\\/\\1/g;$(QUOTE)
|
||||
DEPEND_RULE2 = $(QUOTE)s/^[^\\t].*: //;s/^\\t//;s/ \\\\$$//;s/\\([^ ].*\\)/\\1:/;1s/^./\\n&/;$(QUOTE)
|
||||
|
||||
define MOVE_SRC_DEPEND
|
||||
$(SED) -e $(DEPEND_RULE) $(*F).d > $(DEPENDDIR)/$(*F).d && $(RM) $(*F).d
|
||||
$(SED) -e $(DEPEND_RULE) $(*F).d > $(*F).2.d && \
|
||||
$(SED) -e $(DEPEND_RULE2) $(*F).2.d > $(*F).3.d && \
|
||||
$(CAT) $(*F).2.d $(*F).3.d > $(DEPENDDIR)/$(*F).d && \
|
||||
$(RM) $(*F).d $(*F).2.d $(*F).3.d
|
||||
endef
|
||||
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
# Project: TwlBromSDK - buildtools - compiler dependant settings for RVCT
|
||||
# File: modulerules.cctype.RVCT
|
||||
#
|
||||
# Copyright 2005 Nintendo. All rights reserved.
|
||||
# Copyright 2007 Nintendo. All rights reserved.
|
||||
#
|
||||
# These coded instructions, statements, and computer programs contain
|
||||
# proprietary information of Nintendo of America Inc. and/or Nintendo
|
||||
|
||||
13
tools/axd/multi-ice-twl.cfg
Normal file
13
tools/axd/multi-ice-twl.cfg
Normal file
@ -0,0 +1,13 @@
|
||||
;Total IR length = 8
|
||||
|
||||
[TITLE]
|
||||
Auto-detected TAP Configuration
|
||||
|
||||
[TAP 0] ;IR_len=4, ID_code=15946061
|
||||
ARM946E-S
|
||||
|
||||
[TAP 1] ;IR_len=4, ID_code=30700061
|
||||
ARM7TDMI
|
||||
|
||||
[Timing]
|
||||
Adaptive=ON
|
||||
@ -1,7 +1,10 @@
|
||||
"export TWL_DEBUGGER=ARM" または "make TWL_DEBUGGER=ARM" でビルドして下さい。
|
||||
・"export TWL_DEBUGGER=ARM" または "make TWL_DEBUGGER=ARM" でビルドして下さい。
|
||||
|
||||
デスクトップへ AXD-Debugger のショートカットを作成し、
|
||||
「リンク先」に下記のように設定すると便利です。
|
||||
・ブレッドモードでは Multi-ICE の Auto-Configure が働かないので、
|
||||
Load-Configuration にて multi-ice-twl.cfg をロードして下さい。
|
||||
|
||||
・デスクトップへ AXD-Debugger のショートカットを作成し、
|
||||
「リンク先」に下記のように設定すると便利です。
|
||||
|
||||
ARM9側:
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user