blob: 9a395508ce6ec1ec03d4eb2f38ca5e28804b56c9 [file] [edit]
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
.PHONY: build
build:
go build -o eventdumper ./cmd
.PHONY: test
test:
go test ./...
.PHONY: clean
clean:
$(RM) ./eventdumper
.PHONY: format
format:
gofmt -s -w .