Changeset 2815 in kBuild for trunk/src/kmk/kbuild.c
- Timestamp:
- Aug 14, 2016 12:03:44 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kbuild.c
r2771 r2815 1962 1962 func_kbuild_source_one(char *o, char **argv, const char *pszFuncName) 1963 1963 { 1964 static int s_fNoCompile CmdsDepsDefined = -1;1964 static int s_fNoCompileDepsDefined = -1; 1965 1965 struct variable *pTarget = kbuild_get_variable_n(ST("target")); 1966 1966 struct variable *pSource = kbuild_get_variable_n(ST("source")); … … 2053 2053 /* 2054 2054 # dependencies 2055 ifndef NO_COMPILE_ CMDS_DEPS2055 ifndef NO_COMPILE_DEPS 2056 2056 _DEPFILES_INCLUDED += $(dep) 2057 2057 $(if $(wildcard $(dep)),$(eval include $(dep))) 2058 2058 endif 2059 2059 */ 2060 if (s_fNoCompile CmdsDepsDefined == -1)2061 s_fNoCompile CmdsDepsDefined = kbuild_lookup_variable_n(ST("NO_COMPILE_CMDS_DEPS")) != NULL;2062 if (!s_fNoCompile CmdsDepsDefined)2060 if (s_fNoCompileDepsDefined == -1) 2061 s_fNoCompileDepsDefined = kbuild_lookup_variable_n(ST("NO_COMPILE_DEPS")) != NULL; 2062 if (!s_fNoCompileDepsDefined) 2063 2063 { 2064 2064 pVar = kbuild_query_recursive_variable_n("_DEPFILES_INCLUDED", sizeof("_DEPFILES_INCLUDED") - 1);
Note:
See TracChangeset
for help on using the changeset viewer.