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?
Asked
Active
Viewed 87 times
0
-
6Sure: commit the generated things, so there's nothing to be done anymore except compiling. – Peter Apr 26 '19 at 14:57
-
1There 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