Makefile: Be clear about exactly which files are generated, and how

This mostly aims to document how everything was generated, and the steps
necessary to re-generate the same files verbatim; the goal is to figure
out how to reproduce the files as they currently are.  The exception is
that we strip out the timestamp out of install.sh.
This commit is contained in:
Luke Shumaker 2019-05-19 21:00:40 -04:00
parent d7a38bbdf2
commit 2508856219
4 changed files with 72 additions and 12 deletions

View file

@ -1,6 +1,7 @@
package logutils
//go:generate mockgen -package logutils -source log.go -destination log_mock.go
//go:generate goimports -w log_mock.go
type Log interface {
Fatalf(format string, args ...interface{})