This repository has been archived on 2022-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
activitypub/Makefile

18 lines
326 B
Makefile

TEST := go test
TEST_FLAGS ?= -v
TEST_TARGET ?= ./...
GO111MODULE=on
export GOPATH += $$GOPATH:$(shell pwd)
test:
$(TEST) $(TEST_FLAGS) $(TEST_TARGET)
coverprofile: TEST_TARGET := .
coverprofile: TEST_FLAGS += -covermode=count -coverprofile=$(TEST_TARGET).coverprofile
coverprofile: test
clean:
$(RM) -v *.coverprofile