summaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-11-27 08:09:42 +0000
committerPaul Smith <psmith@gnu.org>1999-11-27 08:09:42 +0000
commit4d5c556f00ae97b16696cc1ff779ac8e45d6fc27 (patch)
treef78cf0b79c3e13edbc8dc68f8980580bfbd8b81c /debug.h
parentce3413f883242537a05c12cb3520c7563496c0d8 (diff)
downloadgunmake-4d5c556f00ae97b16696cc1ff779ac8e45d6fc27.tar.gz
* Update debugging to use string flags instead of integers.
Diffstat (limited to 'debug.h')
-rw-r--r--debug.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/debug.h b/debug.h
index 6b9d1cb..30c2d62 100644
--- a/debug.h
+++ b/debug.h
@@ -20,11 +20,13 @@ Boston, MA 02111-1307, USA. */
#define DB_NONE (0x000)
#define DB_BASIC (0x001)
-#define DB_EXTRA (0x002)
+#define DB_VERBOSE (0x002)
#define DB_JOBS (0x004)
#define DB_IMPLICIT (0x008)
#define DB_MAKEFILES (0x100)
+#define DB_ALL (0xfff)
+
extern int db_level;
#define ISDB(_l) ((_l)&db_level)