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

docs: be more consistent with names

This commit is contained in:
Bernhard Reiter 2023-11-08 09:39:02 +01:00
parent 1e506d46cc
commit 1579065453
No known key found for this signature in database
GPG key ID: 2B7BA3BF9BC3A554

View file

@ -52,14 +52,14 @@ Download the binaries from the most recent release assets on Github.
- Clone the repository `git clone https://github.com/csaf-poc/csaf_distribution.git `
- Build Go components Makefile supplies the following targets:
- Build For GNU/Linux System: `make build_linux`
- Build For Windows System (cross build): `make build_win`
- Build For macOS on Intel Processor (AMD64) (cross build): `make build_mac_amd64`
- Build For macOS on Apple Silicon (ARM64) (cross build): `make build_mac_arm64`
- Build For Linux, Mac and Windows: `make build`
- Build from a specific GitHub tag by passing the intended tag to the `BUILDTAG` variable.
- Build for GNU/Linux system: `make build_linux`
- Build for Windows system (cross build): `make build_win`
- Build for macOS system on Intel Processor (AMD64) (cross build): `make build_mac_amd64`
- Build for macOS system on Apple Silicon (ARM64) (cross build): `make build_mac_arm64`
- Build For GNU/Linux, macOS and Windows: `make build`
- Build from a specific git tag by passing the intended tag to the `BUILDTAG` variable.
E.g. `make BUILDTAG=v1.0.0 build` or `make BUILDTAG=1 build_linux`.
The special value `1` means checking out the highest github tag for the build.
The special value `1` means checking out the highest git tag for the build.
- Remove the generated binaries und their directories: `make mostlyclean`
Binaries will be placed in directories named like `bin-linux-amd64/` and `bin-windows-amd64/`.