Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 998 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 998 Bytes

go-make : make-like build pipelines for go

Overview

PkgGoDev Go Report Card

Experimental implementation of a (GNU-) make-like build pipeline for Go. The goal here is not to recreate or replace make, but to leverage its patterns and semantics as a library. Therefore, the provided CLI command is more of a proof-of-concept.

Key features:

  • a simple DAG (directed acyclic graph) implementation with go-routine-based parallel walk feature
  • an abstraction for make's targets - this is not limited to filesystem based targets
  • an abstraction of up-to-date checks for targets - while GNU make relies on file change timestamps only, go-make can be extended and by default uses a hash based system built on go-mod's go.sum

Install

go get github.com/tobiash/go-make