mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
15 lines
236 B
Makefile
15 lines
236 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
|