Fix makefile indentation

This commit is contained in:
Berger Eugene 2022-04-16 12:55:05 +03:00
parent cf666aaf11
commit b377798d0f
2 changed files with 6 additions and 5 deletions

View File

@ -24,4 +24,4 @@ trim_trailing_whitespace = false
indent_size = 2
[Makefile]
indent_style = space
indent_style = tab

View File

@ -13,14 +13,15 @@ buildrun: build run
build:
go build -o bin/${BINARY_NAME}${EXT} ./src
compile:
#Linux
# Linux
GOOS=linux GOARCH=386 go build -o bin/${BINARY_NAME}-linux-386 ./src
GOOS=linux GOARCH=amd64 go build -o bin/${BINARY_NAME}-linux-amd64 ./src
GOOS=linux GOARCH=arm64 go build -o bin/${BINARY_NAME}-linux-arm64 ./src
GOOS=linux GOARCH=arm go build -o bin/${BINARY_NAME}-linux-arm ./src
#Windows
GOOS=windows GOARCH=amd64 go build -o bin/${BINARY_NAME}-windows-amd64.exe ./src
# Windows
GOOS=windows GOARCH=amd64 go build -o bin/${BINARY_NAME}-windows-amd64.exe ./src
test:
go test -cover ./src
coverhtml:
@ -31,4 +32,4 @@ run:
./bin/${BINARY_NAME}${EXT}
clean:
$(RM) bin\${BINARY_NAME}*
$(RM) bin/${BINARY_NAME}*