1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 05:40:11 +01:00

Add some detail

This commit is contained in:
Fadi Abbud 2022-01-18 16:16:33 +01:00
parent d37706e1e2
commit 84c3a108d0
2 changed files with 3 additions and 3 deletions

View file

@ -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/...

View file

@ -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.