Categorygithub.com/sbinet/mk
repositorypackage
0.5.0
Repository: https://github.com/sbinet/mk.git
Documentation: pkg.go.dev

# README

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