Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 332 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 332 Bytes

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