restic/Makefile

14 lines
133 B
Makefile
Raw Normal View History

2016-03-31 17:20:57 +00:00
.PHONY: all clean test restic
2015-05-11 19:09:32 +00:00
2015-05-10 20:43:42 +00:00
all: restic
2016-03-31 17:20:57 +00:00
restic:
2020-03-01 10:30:02 +00:00
go run build.go
2015-05-10 20:43:42 +00:00
2014-08-05 21:13:19 +00:00
clean:
2017-07-23 12:40:05 +00:00
rm -f restic
2016-03-31 17:20:57 +00:00
test:
2017-07-23 12:40:05 +00:00
go test ./cmd/... ./internal/...
2017-09-09 14:33:51 +00:00