Changeset 3065 for trunk/src/kmk/kbuild.c
- Timestamp:
- Sep 30, 2017, 2:52:35 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kbuild.c
r3046 r3065 48 48 49 49 #include "kbuild.h" 50 #include "k/kDefs.h" 50 51 51 52 #include <assert.h> … … 2001 2002 struct variable *pOutBase = kbuild_get_object_base(pTarget, pSource, "outbase"); 2002 2003 struct variable *pObjSuff = kbuild_get_object_suffix(pTarget, pSource, pTool, pType, pBldTrg, pBldTrgArch, "objsuff"); 2003 struct variable *pDefs, *pIncs, *pFlags, *pDeps, *pOrderDeps, *pDirDep, *pDep, *pVar, *pOutput, *pOutputMaybe; 2004 struct variable *pDeps, *pOrderDeps, *pDirDep, *pDep, *pVar, *pOutput, *pOutputMaybe; 2005 #if 0 /** @todo figure out why this isn't used */ 2006 struct variable *pDefs, *pIncs, *pFlags; 2007 #endif 2004 2008 struct variable *pObj = kbuild_set_object_name_and_dep_and_dirdep_and_PATH_target_source(pTarget, pSource, pOutBase, pObjSuff, "obj", &pDep, &pDirDep); 2005 2009 int fInstallOldVars = 0; … … 2054 2058 2055 2059 2060 #if 0 /** @todo figure out why this isn't used */ 2056 2061 pDefs = kbuild_collect_source_prop(pTarget, pSource, pTool, &Sdks, pType, pBldType, pBldTrg, pBldTrgArch, pBldTrgCpu, NULL, 2057 2062 ST("DEFS"), ST("defs"), 1/* left-to-right */); … … 2060 2065 pFlags = kbuild_collect_source_prop(pTarget, pSource, pTool, &Sdks, pType, pBldType, pBldTrg, pBldTrgArch, pBldTrgCpu, NULL, 2061 2066 ST("FLAGS"), ST("flags"), 1/* left-to-right */); 2067 #endif 2062 2068 pDeps = kbuild_collect_source_prop(pTarget, pSource, pTool, &Sdks, pType, pBldType, pBldTrg, pBldTrgArch, pBldTrgCpu, pDefPath, 2063 2069 ST("DEPS"), ST("deps"), 1/* left-to-right */);
Note:
See TracChangeset
for help on using the changeset viewer.