Home
last modified time | relevance | path

Searched refs:OP_USEBEFORE (Results 1 – 10 of 10) sorted by relevance

/dports/devel/bmake/bmake/
H A Dmake.c146 OP_MADE, OP_SPECIAL, OP_USEBEFORE, OP_INVISIBLE,
236 if (!(gn->type & (OP_JOIN | OP_USE | OP_USEBEFORE | OP_EXEC))) { in GNode_IsOODate()
265 if (gn->type & (OP_USE | OP_USEBEFORE)) { in GNode_IsOODate()
381 if (!(cgn->type & (OP_USE | OP_USEBEFORE | OP_TRANSFORM))) { in Make_HandleUse()
389 if ((cgn->type & (OP_USE | OP_USEBEFORE)) || in Make_HandleUse()
391 if (cgn->type & OP_USEBEFORE) { in Make_HandleUse()
429 cgn->type & ~(OP_OPMASK | OP_USE | OP_USEBEFORE | OP_TRANSFORM); in Make_HandleUse()
452 if (!(cgn->type & (OP_USE | OP_USEBEFORE))) in MakeHandleUse()
708 if (!(cgn->type & (OP_EXEC | OP_USE | OP_USEBEFORE))) { in Make_Update()
813 if (cgn->type & (OP_EXEC | OP_USE | OP_USEBEFORE | OP_INVISIBLE)) in MakeAddAllSrc()
[all …]
H A Dtarg.c504 if (!(gn->type & (OP_JOIN | OP_USE | OP_USEBEFORE | OP_EXEC))) { in Targ_PrintNode()
H A Dmake.h269 OP_USEBEFORE = 1 << 13, enumerator
H A Djob.c1275 (OP_JOIN | OP_USE | OP_USEBEFORE | OP_EXEC | OP_OPTIONAL | in Job_Touch()
H A Dparse.c325 { ".USEBEFORE", SP_ATTRIBUTE, OP_USEBEFORE },
/dports/misc/rump/buildrump.sh-b914579/src/usr.bin/make/
H A Dmake.c223 if ((gn->type & (OP_JOIN|OP_USE|OP_USEBEFORE|OP_EXEC)) == 0) { in Make_OODate()
248 if (gn->type & (OP_USE|OP_USEBEFORE)) { in Make_OODate()
377 if ((gn->flags & REMAKE) == 0 && !(gn->type & (OP_USE|OP_USEBEFORE))) { in MakeAddChild()
447 if ((cgn->type & (OP_USE|OP_USEBEFORE|OP_TRANSFORM)) == 0) { in Make_HandleUse()
453 if ((cgn->type & (OP_USE|OP_USEBEFORE)) || Lst_IsEmpty(pgn->commands)) { in Make_HandleUse()
454 if (cgn->type & OP_USEBEFORE) { in Make_HandleUse()
502 pgn->type |= cgn->type & ~(OP_OPMASK|OP_USE|OP_USEBEFORE|OP_TRANSFORM); in Make_HandleUse()
537 if ((cgn->type & (OP_USE|OP_USEBEFORE)) == 0) in MakeHandleUse()
759 if ( ! (cgn->type & (OP_EXEC|OP_USE|OP_USEBEFORE))) { in Make_Update()
892 if ((cgn->type & (OP_EXEC|OP_USE|OP_USEBEFORE|OP_INVISIBLE)) == 0) { in MakeAddAllSrc()
H A Dmake.h270 #define OP_USEBEFORE 0x00002000 /* Like .USE, only prepend commands */ macro
H A Dtarg.c646 if (! (gn->type & (OP_JOIN|OP_USE|OP_USEBEFORE|OP_EXEC))) { in Targ_PrintNode()
H A Dparse.c340 { ".USEBEFORE", Attribute, OP_USEBEFORE },
H A Djob.c1133 if (gn->type & (OP_JOIN|OP_USE|OP_USEBEFORE|OP_EXEC|OP_OPTIONAL| in Job_Touch()