From 2cddb3dc1c242dbeb208d7bdffad963a63fa7d8e Mon Sep 17 00:00:00 2001 From: Andreas Fredriksson Date: Fri, 14 Feb 2020 17:12:00 -0800 Subject: [PATCH] Also emit lemon .out file to output dir. --- scripts/tundra/syntax/lemon.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tundra/syntax/lemon.lua b/scripts/tundra/syntax/lemon.lua index 676abb44..4dd01fa2 100644 --- a/scripts/tundra/syntax/lemon.lua +++ b/scripts/tundra/syntax/lemon.lua @@ -20,7 +20,7 @@ DefRule { env:set('OUTDIR', data.OutputDir or '.') local gen_c = '$(OUTDIR)$(SEP)' .. base_name .. '.c' local gen_h = '$(OUTDIR)$(SEP)' .. base_name .. '.h' - local gen_out = base_name .. '.out' + local gen_out = '$(OUTDIR)$(SEP)' .. base_name .. '.out' return { InputFiles = { src }, OutputFiles = { gen_c, gen_h, gen_out },