Home
last modified time | relevance | path

Searched refs:sysIncPath (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/bmake/
H A Dmain.c453 (void)SearchPath_Add(sysIncPath, found_path); in MainParseArgSysInc()
456 (void)SearchPath_Add(sysIncPath, argvalue); in MainParseArgSysInc()
1198 Lst_IsEmpty(&sysIncPath->dirs) ? defSysIncPath : sysIncPath, in ReadBuiltinRules()
1496 if (Lst_IsEmpty(&sysIncPath->dirs)) in main_ReadFiles()
1497 SearchPath_AddAll(sysIncPath, defSysIncPath); in main_ReadFiles()
1697 SearchPath *sysInc = Lst_IsEmpty(&sysIncPath->dirs) in ReadMakefile()
1698 ? defSysIncPath : sysIncPath; in ReadMakefile()
H A Dparse.c251 SearchPath *sysIncPath; /* directories for <...> includes */ variable
1004 Lst_Append(*inout_paths, sysIncPath); in HandleDependencyTargetSpecial()
1316 SearchPath *path = Lst_IsEmpty(&sysIncPath->dirs) in IncludeFile()
1317 ? defSysIncPath : sysIncPath; in IncludeFile()
3000 sysIncPath = SearchPath_New(); in Parse_Init()
3016 SearchPath_Free(sysIncPath); in Parse_End()
H A Ddir.c579 SearchPath *path = Lst_IsEmpty(&sysIncPath->dirs) in Dir_SetSYSPATH()
580 ? defSysIncPath : sysIncPath; in Dir_SetSYSPATH()
H A Dmake.h642 extern SearchPath *sysIncPath;
H A DChangeLog471 Also fix Dir_SetSYSPATH to use defSysIncPath if sysIncPath is empty.
472 o main.c: no need to set .DOTLAST in sysIncPath
4459 o only read first sys.mk etc when searching sysIncPath - sjg