mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 09:37:02 +00:00
- makefile: Don't refresh deps automatically, causes double build - storage: Move GetMessage, GetMessages (Mailbox), PurgeMessages to the Store API for #69 - storage: Remove Mailbox.Name method for #69 - test: Create new test package for #79 - test: Implement StoreStub, migrate some tests off MockDataStore for task #80 - rest & webui: update controllers to use new Store methods
37 lines
619 B
Makefile
37 lines
619 B
Makefile
SHELL = /bin/sh
|
|
|
|
SRC := $(shell find . -type f -name '*.go' -not -path "./vendor/*")
|
|
PKGS := $(shell go list ./... | grep -v /vendor/)
|
|
|
|
.PHONY: all build clean fmt lint simplify test
|
|
|
|
commands = client inbucket
|
|
|
|
all: clean test lint build
|
|
|
|
$(commands): %: cmd/%
|
|
go build ./$<
|
|
|
|
clean:
|
|
go clean $(PKGS)
|
|
rm -f $(commands)
|
|
|
|
deps:
|
|
go get -t ./...
|
|
|
|
build: $(commands)
|
|
|
|
test:
|
|
go test -race ./...
|
|
|
|
fmt:
|
|
@gofmt -l -w $(SRC)
|
|
|
|
simplify:
|
|
@gofmt -s -l -w $(SRC)
|
|
|
|
lint:
|
|
@test -z "$(shell gofmt -l . | tee /dev/stderr)" || echo "[WARN] Fix formatting issues with 'make fmt'"
|
|
@golint -set_exit_status $(PKGS)
|
|
@go vet $(PKGS)
|