diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-06-03 16:35:42 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-06-03 16:35:42 +0000 |
commit | 1a1e6b96a254dc96fcd66a961f60d7a8a7993acb (patch) | |
tree | 99a5eb1971f4212a162c25749c9e1510bc6ed29e /Makefile.tpl | |
parent | 9f470313378357db186ea51df1a696ee484d4465 (diff) | |
download | gcc-1a1e6b96a254dc96fcd66a961f60d7a8a7993acb.zip gcc-1a1e6b96a254dc96fcd66a961f60d7a8a7993acb.tar.gz gcc-1a1e6b96a254dc96fcd66a961f60d7a8a7993acb.tar.bz2 |
Makefile.tpl: Rename [+target+] to [+make_target+].
* Makefile.tpl: Rename [+target+] to [+make_target+].
* Makefile.def: Rename 'target' to 'make_target'.
From-SVN: r67380
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index a348206..716777c 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -608,8 +608,8 @@ all-target: [+ # because it is so large that it can easily overflow the command line # length limit on some systems. [+ FOR recursive_targets +] -.PHONY: do-[+target+] -do-[+target+]: +.PHONY: do-[+make_target+] +do-[+make_target+]: @r=`${PWD}`; export r; \ s=`cd $(srcdir); ${PWD}`; export s; \ $(SET_LIB_PATH) \ @@ -632,7 +632,7 @@ do-[+target+]: "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ "RANLIB=$${RANLIB}" \ "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \ - [+target+]) \ + [+make_target+]) \ || exit 1; \ else true; fi; \ done @@ -650,7 +650,7 @@ do-[+target+]: "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \ "RANLIB=$${RANLIB}" \ "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \ - [+target+]) \ + [+make_target+]) \ || exit 1; \ else true; fi; \ done |