MCPcopy Create free account
hub / github.com/boostorg/build / targetentry

Function targetentry

v2/engine/rules.c:259–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

257 */
258
259TARGETS * targetentry( TARGETS * chain, TARGET * target )
260{
261 TARGETS * const c = (TARGETS *)BJAM_MALLOC( sizeof( TARGETS ) );
262 c->target = target;
263
264 if ( !chain ) chain = c;
265 else chain->tail->next = c;
266 chain->tail = c;
267 c->next = 0;
268
269 return chain;
270}
271
272
273/*

Callers 10

make1aFunction · 0.85
make1cFunction · 0.85
make1cmdsFunction · 0.85
cmd_sem_lockFunction · 0.85
target_includeFunction · 0.85
targetlistFunction · 0.85
make0rescanFunction · 0.85
make0Function · 0.85
builtin_dependsFunction · 0.85
evaluate_ruleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected