summaryrefslogtreecommitdiff
path: root/xmake/plugins/project/makefile/makefile.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2018-05-07 22:55:32 +0800
committerruki <[email protected]>2018-05-07 11:33:16 +0800
commite257d701fc71e8d75b31485cfa6b71967f180a43 (patch)
treed867f7d55fe2da785530622e7f4a24184657227f /xmake/plugins/project/makefile/makefile.lua
parent6300b045a734b9d5d1f81d154365c5c4b73a650d (diff)
improve dependent files
Diffstat (limited to 'xmake/plugins/project/makefile/makefile.lua')
-rw-r--r--xmake/plugins/project/makefile/makefile.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/project/makefile/makefile.lua b/xmake/plugins/project/makefile/makefile.lua
index 953a985ae..762d9dc19 100644
--- a/xmake/plugins/project/makefile/makefile.lua
+++ b/xmake/plugins/project/makefile/makefile.lua
@@ -208,7 +208,7 @@ function _make_single_object(makefile, target, sourcekind, sourcebatch, sourcefl
-- get source and object files
local sourcefiles = sourcebatch.sourcefiles
local objectfiles = sourcebatch.objectfiles
- local incdepfiles = sourcebatch.incdepfiles
+ local dependfiles = sourcebatch.dependfiles
-- get program
local program = platform.tool(sourcekind)