restic/Makefile

14 lines
133 B
Makefile
Raw Normal View History

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