Home
last modified time | relevance | path

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

/freebsd/contrib/bmake/
H A Dmain.c446 (void)SearchPath_Add(sysIncPath, found_path); in MainParseArgSysInc()
449 (void)SearchPath_Add(sysIncPath, argvalue); in MainParseArgSysInc()
1205 Lst_IsEmpty(&sysIncPath->dirs) ? defSysIncPath : sysIncPath, in ReadBuiltinRules()
1494 if (Lst_IsEmpty(&sysIncPath->dirs)) in main_ReadFiles()
1495 SearchPath_AddAll(sysIncPath, defSysIncPath); in main_ReadFiles()
1698 SearchPath *sysInc = Lst_IsEmpty(&sysIncPath->dirs) in ReadMakefile()
1699 ? defSysIncPath : sysIncPath; in ReadMakefile()
H A Dparse.c251 SearchPath *sysIncPath; /* directories for <...> includes */ variable
949 Lst_Append(*inout_paths, sysIncPath); in HandleDependencyTargetSpecial()
1261 SearchPath *path = Lst_IsEmpty(&sysIncPath->dirs) in IncludeFile()
1262 ? defSysIncPath : sysIncPath; in IncludeFile()
2943 sysIncPath = SearchPath_New(); in Parse_Init()
2959 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.h641 extern SearchPath *sysIncPath;
642 /* The default for sysIncPath. */
H A DChangeLog301 Also fix Dir_SetSYSPATH to use defSysIncPath if sysIncPath is empty.
302 o main.c: no need to set .DOTLAST in sysIncPath
4289 o only read first sys.mk etc when searching sysIncPath - sjg