diff options
author | Paul Smith <psmith@gnu.org> | 1999-11-27 08:09:42 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-11-27 08:09:42 +0000 |
commit | 4d5c556f00ae97b16696cc1ff779ac8e45d6fc27 (patch) | |
tree | f78cf0b79c3e13edbc8dc68f8980580bfbd8b81c /debug.h | |
parent | ce3413f883242537a05c12cb3520c7563496c0d8 (diff) | |
download | gunmake-4d5c556f00ae97b16696cc1ff779ac8e45d6fc27.tar.gz |
* Update debugging to use string flags instead of integers.
Diffstat (limited to 'debug.h')
-rw-r--r-- | debug.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |