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