Home
last modified time | relevance | path

Searched refs:OP_OPMASK (Results 1 – 4 of 4) sorted by relevance

/NextBSD/contrib/bmake/
HDmake.h258 #define OP_OPMASK (OP_DEPENDS|OP_FORCE|OP_DOUBLEDEP) macro
310 #define OP_NOP(t) (((t) & OP_OPMASK) == 0x00000000)
HDtarg.c577 type &= ~OP_OPMASK; in Targ_PrintType()
686 switch (gn->type & OP_OPMASK) { in Targ_PrintNode()
826 cgn->type |= pgn->type & ~OP_OPMASK; in TargPropagateCohort()
HDparse.c901 if (((op & OP_OPMASK) != (gn->type & OP_OPMASK)) && in ParseDoOp()
908 if ((op == OP_DOUBLEDEP) && ((gn->type & OP_OPMASK) == OP_DOUBLEDEP)) { in ParseDoOp()
923 gn->type |= op & ~OP_OPMASK; in ParseDoOp()
HDmake.c503 pgn->type |= cgn->type & ~(OP_OPMASK|OP_USE|OP_USEBEFORE|OP_TRANSFORM); in Make_HandleUse()