File: quit.h

package info (click to toggle)
remake 4.3%2Bdbg-1.6%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,688 kB
  • sloc: ansic: 38,702; sh: 5,248; perl: 1,577; makefile: 236; lisp: 26; sed: 16
file content (18 lines) | stat: -rw-r--r-- 684 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** \file libdebugger/command/help/quit.h
 *
 *  \brief Help text for debugger command `quit`.
 *
 */
#define quit_HELP_TEXT							\
  "Exit make. If a numeric argument is given, it will be the exit\n"	\
  "status reported back. A status of 77 in a nested make will signals\n" \
  "termination in the parent. So if no numeric argument is given and\n" \
  "MAKELEVEL is 0, then status 0 is set; otherwise it is 77."		\
  "Select and print the immediate child dependency target that is\n"	\
  "currently under consideration.\n"					\
  "\n"									\
  "If *count* is the default is 1.\n"					\
  "\n"									\
  "See also:\n"								\
  "---------\n"								\
  "`down`, and `frame`"