0

I have a few projects in Go that contain a Makefile to perform various tasks to build, install, create assets, run generators etc. Is there a way to make such programs "go gettable", or I have to figure out a way to substitute Makefile with something else?

dimus
  • 8,712
  • 10
  • 45
  • 56
  • 6
    Sure: commit the generated things, so there's nothing to be done anymore except compiling. – Peter Apr 26 '19 at 14:57
  • 1
    There is nothing else to substitute it with. `go get` just runs `go install`, which just runs `go build`. If your app does not build properly by `git clone;go build`, it is not "go gettable". – Adrian Apr 26 '19 at 15:20
  • Good point @Peter, thanks – dimus Apr 26 '19 at 15:46

0 Answers0