Skip to content

Commit

Permalink
Also emit lemon .out file to output dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
deplinenoise committed Feb 15, 2020
1 parent c3041ca commit 2cddb3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tundra/syntax/lemon.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit 2cddb3d

Please sign in to comment.