Bumps [github.com/yuin/gopher-lua](https://github.com/yuin/gopher-lua) from 0.0.0-20200603152657-dc2b0ca8b37e to 1.1.1. - [Release notes](https://github.com/yuin/gopher-lua/releases) - [Commits](https://github.com/yuin/gopher-lua/commits/v1.1.1) --- updated-dependencies: - dependency-name: github.com/yuin/gopher-lua dependency-type: indirect update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
7 lines
131 B
Makefile
7 lines
131 B
Makefile
all : parser.go
|
|
|
|
parser.go : parser.go.y
|
|
goyacc -o $@ parser.go.y; [ -f y.output ] && ( rm -f y.output )
|
|
|
|
clean:
|
|
rm -f parser.go
|