mirror of
https://github.com/restic/restic.git
synced 2024-12-22 07:43:03 +00:00
14 lines
242 B
Makefile
14 lines
242 B
Makefile
.PHONY: clean all test
|
|
|
|
test:
|
|
go test -race ./...
|
|
for dir in cmd/* ; do \
|
|
(cd "$$dir"; go build -race) \
|
|
done
|
|
test/run.sh cmd/khepri/khepri cmd/dirdiff/dirdiff
|
|
|
|
clean:
|
|
go clean
|
|
for dir in cmd/* ; do \
|
|
(cd "$$dir"; go clean) \
|
|
done
|