Files
oddauth/Makefile
2026-03-31 22:33:57 +09:00

18 lines
211 B
Makefile

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