1
0
mirror of https://github.com/restic/restic.git synced 2024-06-20 07:06:38 +02: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 ./...