2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 08:30:49 +00:00
restic/Makefile
2015-01-17 16:32:24 +01:00

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 ./...