mirror of
https://github.com/octoleo/restic.git
synced 2024-11-13 08:46:33 +00:00
16 lines
206 B
Makefile
16 lines
206 B
Makefile
.PHONY: clean all debug test
|
|
|
|
all:
|
|
for dir in ./cmd/* ; do \
|
|
(echo "$$dir"; cd "$$dir"; go build) \
|
|
done
|
|
|
|
debug:
|
|
(cd cmd/restic; go build -a -tags debug)
|
|
|
|
test:
|
|
./testsuite.sh
|
|
|
|
clean:
|
|
go clean ./...
|