Files
triplex/Makefile
micha 5b68e79c0d
All checks were successful
CI / test (push) Successful in 16s
Rename cmd/triplex-example to cmd/triplex
2026-03-02 23:31:05 +01:00

21 lines
313 B
Makefile

# Copyright (c) 2026 Micha Hoiting
APP_EXAMPLE := triplex
.PHONY: test build-triplex run-triplex fmt
test:
go test ./...
build-triplex:
go build -o bin/$(APP_EXAMPLE) ./cmd/$(APP_EXAMPLE)
run-triplex:
go run ./cmd/$(APP_EXAMPLE)
fmt:
gofmt -w ./serial/*.go ./cmd/$(APP_EXAMPLE)/*.go
vet:
go vet ./...