Skip to content

Commit 1c8e2eb

Browse files
committed
hide commands in Makefile
1 parent 50212ea commit 1c8e2eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

words_extractor_go/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ BINARY_NAME=sort-me-out
33
all: clean test build
44

55
build:
6-
go build -o ${BINARY_NAME} *.go
6+
@go build -o ${BINARY_NAME} *.go
77

88
run: build
99
./${BINARY_NAME}
1010

1111
test:
12-
go test ./... -v -coverprofile=coverage.out
12+
@go test ./... -v -coverprofile=coverage.out
1313

1414
cover: test
15-
go tool cover -html=coverage.out
15+
@go tool cover -html=coverage.out
1616

1717
clean:
18-
go clean
18+
@go clean
1919
rm -f coverage.out
2020
rm -f ./${BINARY_NAME}
2121
rm -rf ./words

0 commit comments

Comments
 (0)