From b377798d0f7ca4de730c591fc97a8529cf74af87 Mon Sep 17 00:00:00 2001 From: Berger Eugene Date: Sat, 16 Apr 2022 12:55:05 +0300 Subject: [PATCH] Fix makefile indentation --- .editorconfig | 2 +- Makefile | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.editorconfig b/.editorconfig index 400510a..3419e7f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -24,4 +24,4 @@ trim_trailing_whitespace = false indent_size = 2 [Makefile] -indent_style = space +indent_style = tab diff --git a/Makefile b/Makefile index f351c84..cefc973 100644 --- a/Makefile +++ b/Makefile @@ -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}*