diff options
Diffstat (limited to 'res/keymaps')
-rw-r--r-- | res/keymaps/bam.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/res/keymaps/bam.lua b/res/keymaps/bam.lua index f078dd0..0657abc 100644 --- a/res/keymaps/bam.lua +++ b/res/keymaps/bam.lua @@ -2,10 +2,10 @@ keymaps = {} for _, file in pairs(Collect('res/keymaps/*.c')) do local obj = Compile(host_settings, file) - local tgt = PathJoin('build', PathBase(file) .. '_tmp') + local tgt = BuildOutput(host_settings, PathBase(file) .. '_tmp') local bin = Link(host_settings, tgt, obj) - local out = PathJoin('build', PathBase(file) .. '.km') + local out = BuildOutput(host_settings, PathBase(file)) .. '.km' AddJob(out, "call font " .. bin, "./" .. bin .. " > " .. out) AddDependency(out, bin) table.insert(keymaps, out) |