/mk

`mk` is a simple `make` like command to ease the day-to-day life of building and testing `go` based projects.

Primary LanguageGoBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

mk

mk is a simple make like command to ease the day-to-day life of building and testing go based projects.

Installation

$ go get github.com/sbinet/mk

Usage

In a go package:

# build, install and test
$ mk

# build, install
$ mk install

# only build
$ mk build

# build and test
$ mk test