=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/make.c,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/usr.bin/make/make.c 1995/10/18 08:45:43 1.1 --- src/usr.bin/make/make.c 1996/03/27 19:32:38 1.2 *************** *** 1,4 **** ! /* $NetBSD: make.c,v 1.7 1995/06/14 15:19:40 christos Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. --- 1,5 ---- ! /* $OpenBSD: make.c,v 1.2 1996/03/27 19:32:38 niklas Exp $ */ ! /* $NetBSD: make.c,v 1.8 1996/03/15 21:52:37 christos Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. *************** *** 41,48 **** #ifndef lint #if 0 static char sccsid[] = "@(#)make.c 5.3 (Berkeley) 6/1/90"; #else ! static char rcsid[] = "$NetBSD: make.c,v 1.7 1995/06/14 15:19:40 christos Exp $"; #endif #endif /* not lint */ --- 42,50 ---- #ifndef lint #if 0 static char sccsid[] = "@(#)make.c 5.3 (Berkeley) 6/1/90"; + static char rcsid[] = "$NetBSD: make.c,v 1.8 1996/03/15 21:52:37 christos Exp $"; #else ! static char rcsid[] = "$OpenBSD: make.c,v 1.2 1996/03/27 19:32:38 niklas Exp $"; #endif #endif /* not lint */ *************** *** 213,219 **** printf(".JOIN node..."); } oodate = gn->childMade; ! } else if (gn->type & (OP_FORCE|OP_EXEC)) { /* * A node which is the object of the force (!) operator or which has * the .EXEC attribute is always considered out-of-date. --- 215,221 ---- printf(".JOIN node..."); } oodate = gn->childMade; ! } else if (gn->type & (OP_FORCE|OP_EXEC|OP_PHONY)) { /* * A node which is the object of the force (!) operator or which has * the .EXEC attribute is always considered out-of-date. *************** *** 221,226 **** --- 223,230 ---- if (DEBUG(MAKE)) { if (gn->type & OP_FORCE) { printf("! operator..."); + } else if (gn->type & OP_PHONY) { + printf(".PHONY node..."); } else { printf(".EXEC node..."); }