diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2012-07-23 13:50:53 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-26 14:40:47 +0100 |
commit | 32ed8db1315d02ec3d9080999a9ad4d4ed1b9fe3 (patch) | |
tree | 59e85572cafedd226f0a4df594cb7c2ed2272bdb /meta/recipes-devtools/remake/remake.inc | |
parent | 171cb4683015fd362236ed5f597310e7950e1f70 (diff) | |
download | poky-32ed8db1315d02ec3d9080999a9ad4d4ed1b9fe3.tar.gz |
remake: Add remake-native and remake
remake is a patched version of GNU Make that adds improved error
reporting, the ability to trace execution in a comprehensible way,
and a debugger.
[YOCTO #2402]
(From OE-Core rev: 823fab378bd46da6a296a67f981dffb31b1c8061)
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/remake/remake.inc')
-rw-r--r-- | meta/recipes-devtools/remake/remake.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-devtools/remake/remake.inc b/meta/recipes-devtools/remake/remake.inc new file mode 100644 index 0000000000..6ac833efd5 --- /dev/null +++ b/meta/recipes-devtools/remake/remake.inc | |||
@@ -0,0 +1,16 @@ | |||
1 | SUMMARY = "Makefile debugger which is gnumake 3.81 compatible" | ||
2 | DESCRIPTION = "remake is a patched and modernized version of GNU make \ | ||
3 | utility that adds improved error reporting, the ability to trace \ | ||
4 | execution in a comprehensible way, and a debugger." | ||
5 | |||
6 | HOMEPAGE = "http://bashdb.sourceforge.net/remake/" | ||
7 | SECTION = "devel" | ||
8 | |||
9 | SRC_URI = "git://github.com/rocky/remake.git" | ||
10 | |||
11 | inherit autotools gettext update-alternatives | ||
12 | |||
13 | ALTERNATIVE_${PN} = "make" | ||
14 | ALTERNATIVE_LINK_NAME[make] = "${bindir}/make" | ||
15 | ALTERNATIVE_TARGET[make] = "${bindir}/remake" | ||
16 | ALTERNATIVE_PRIORITY = "100" | ||