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

16 lines
286 B
Makefile
Raw Normal View History

2018-04-11 19:03:41 +00:00
TEST := go test
TEST_FLAGS ?= -v
TEST_TARGET ?= ./...
GO111MODULE=on
2018-04-11 19:03:41 +00:00
test:
$(TEST) $(TEST_FLAGS) $(TEST_TARGET)
coverprofile: TEST_TARGET := .
coverprofile: TEST_FLAGS += -covermode=count -coverprofile=$(TEST_TARGET).coverprofile
coverprofile: test
2018-04-11 19:03:41 +00:00
clean:
$(RM) -v *.coverprofile