diff --git a/Makefile b/Makefile index 914fc65..867d0a5 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ build: @echo $(buildMsg) @$(BUILD) -o ./ -v ./cmd/... -# Build the binaries for windows and place them in the current directory level. +# Build the binaries for windows (cross build) and place them in the current directory level. build_win: @echo $(buildMsg) @env GOOS=windows $(BUILD) -o ./ -v ./cmd/... diff --git a/README.md b/README.md index 24e730c..6928a5a 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ - Build Go components Makefile supplies the following builds: - - For Linux Systems :`make build` - - For Windows platform: `make build_win` + - For Linux System (default build):`make build` + - For Windows System (cross build): `make build_win` - Build from the last tag: `make build_tag` These places the binaries in the current directory.