.gitignore
Makefile
go.mod
go.sum
main.go
matching.go
misc.go
nfa.go
postfixNode.go
re_test.go
sliceQueue.go
stateContents.go
todo.txt
unique_array.go
10 lines
132 B
Makefile
10 lines
132 B
Makefile
.DEFAULT_GOAL := build
|
|
.PHONY: fmt vet build
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
vet: fmt
|
|
go vet ./...
|
|
build: vet
|
|
go build -gcflags="-N -l" ./...
|