Files
himewiki/Makefile
2025-11-15 09:11:41 +09:00

17 lines
151 B
Makefile

all: build
build:
go build -o himewiki ./cmd/himewiki
clean:
rm -f himewiki
run:
go run ./cmd/himewiki
fmt:
go fmt ./...
test:
go test ./...