mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-24 14:54:03 +00:00
16 lines
258 B
Makefile
16 lines
258 B
Makefile
all: bindata fmt ui
|
|
|
|
ui:
|
|
go install .
|
|
|
|
bindata: bindata-deps
|
|
-rm assets/assets.go
|
|
go-bindata -o assets/assets.go -pkg assets assets/...
|
|
|
|
bindata-deps:
|
|
go get github.com/jteeuwen/go-bindata/...
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
.PNONY: all ui bindata bindata-deps fmt
|