=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/main.c,v retrieving revision 1.98 retrieving revision 1.99 diff -c -r1.98 -r1.99 *** src/usr.bin/make/main.c 2012/10/06 09:32:40 1.98 --- src/usr.bin/make/main.c 2012/10/09 19:47:09 1.99 *************** *** 1,4 **** ! /* $OpenBSD: main.c,v 1.98 2012/10/06 09:32:40 espie Exp $ */ /* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: main.c,v 1.99 2012/10/09 19:47:09 espie Exp $ */ /* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */ /* *************** *** 246,251 **** --- 246,254 ---- case 'd': debug |= DEBUG_DIR; break; + case 'D': + debug |= DEBUG_DOUBLE; + break; case 'e': debug |= DEBUG_EXPENSIVE; break; *************** *** 262,267 **** --- 265,273 ---- ++modules; } break; + case 'h': + debug |= DEBUG_HELDJOBS; + break; case 'j': debug |= DEBUG_JOB | DEBUG_KILL; break; *************** *** 291,296 **** --- 297,305 ---- break; case 't': debug |= DEBUG_TARG; + break; + case 'T': + debug |= DEBUG_TARGGROUP; break; case 'v': debug |= DEBUG_VAR;