-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
.PHONY: build gen check test | ||
.PHONY: dev build gen check test | ||
|
||
build: compile check test build | ||
|
||
dev: | ||
luarocks install cyan | ||
|
||
compile: | ||
cyan build | ||
luarocks build | ||
|
||
check: compile | ||
tl check -q spec/integ.tl | ||
luacheck emitter.lua | ||
luacheck src/emitter.lua | ||
|
||
test: compile | ||
luarocks test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
return { | ||
build_dir = ".", | ||
source_dir = ".", | ||
build_dir = "src", | ||
source_dir = "src", | ||
gen_target = "5.1", | ||
gen_compat = "off", | ||
include = { "emitter.tl" }, | ||
include = { "src/emitter.tl" }, | ||
} |