restic/Makefile

14 lines
133 B
Makefile
Raw Permalink Normal View History

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