Files
levi/Makefile

17 lines
135 B
Makefile
Raw Permalink Normal View History

2026-03-25 08:39:31 +09:00
all: build
build:
go build -o levi ./cmd/levi
clean:
rm -f levi
run:
go run ./cmd/levi
fmt:
go fmt ./...
test:
go test ./...