diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-06-03 16:36:52 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-06-03 16:36:52 +0000 |
commit | 27b1cc72b802ba6055e2c2929f7089375568939f (patch) | |
tree | 1f4ed4cc51bfa0f385aed7d97da65035736a8868 /Makefile.tpl | |
parent | e30ddb24b30b2c4e6d1d7d44c7d1bc18da6c4aae (diff) | |
download | fsf-binutils-gdb-27b1cc72b802ba6055e2c2929f7089375568939f.zip fsf-binutils-gdb-27b1cc72b802ba6055e2c2929f7089375568939f.tar.gz fsf-binutils-gdb-27b1cc72b802ba6055e2c2929f7089375568939f.tar.bz2 |
* Makefile.tpl: Rename [+target+] to [+make_target+].
* Makefile.def: Rename 'target' to 'make_target'.
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 |