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

Function targetentry

src/engine/rules.cpp:258–269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 10

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

Calls

no outgoing calls

Tested by

no test coverage detected