blob: 8979cb41c5133779a06aa6836ff27b94239111b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
SHELL = /bin/sh
clean:
@rm -f ./bin/minit
build:
@go build -o ./bin/minit main.go
test-unit:
@go test ./...
test-integration: build
@./bin/minit -h
test: test-unit test-integration
|