1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
/** \file libdebugger/command/help/write.h
*
* \brief Help text for debugger command `write`.
*
*/
#define write_HELP_TEXT \
"Writes the commands associated of a target to a file with MAKE\n" \
"variables expanded.\n" \
"\n" \
"If no target given, the basename of the current target is used.\n" \
"If a filename is supplied it is used. If it is the string\n" \
"\"here\", we write the output to stdout. If no filename is\n" \
"given then create the filename by prepending a directory name to\n" \
"the target name and then append \".sh\"."
|