Build from source tips for those new to Go

This commit is contained in:
Paul deGrandis 2016-08-01 08:57:50 -04:00
parent 5772eba1cb
commit f01bbbc2b4

View file

@ -13,6 +13,11 @@ is for anyone who loves make, but hates all its stupid bullshit.
2. Run `go get github.com/dcjones/mk`
3. Make sure `$GOPATH/bin` is in your `PATH`.
### Building/installing from source
1. `git clone` the repo
2. `go build`
## Why Plan 9 mk is better than make
Way back in the 90s, some smart guys at Bell Labs got together and decided to
@ -106,6 +111,12 @@ mean.txt:Sjulia: input.txt
Functional, but with some bugs and some unimplemented minor features. Give it a
try and see what you think!
## Building and installing from source
* clone the repo
* `go build` - build the executable
* `go test` - run the tests
## License
This work is provided under the [BSD 2-clause](https://opensource.org/licenses/BSD-2-Clause) license.