summaryrefslogtreecommitdiff
path: root/debug.h
diff options
context:
space:
mode:
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)