2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-22 11:59:00 +00:00
restic/Makefile

16 lines
206 B
Makefile
Raw Normal View History

2015-01-14 20:36:33 +00:00
.PHONY: clean all debug test
2014-08-05 21:13:19 +00:00
2015-01-14 20:36:33 +00:00
all:
for dir in ./cmd/* ; do \
(echo "$$dir"; cd "$$dir"; go build) \
done
debug:
2015-01-14 20:36:33 +00:00
(cd cmd/restic; go build -a -tags debug)
2015-01-14 20:36:33 +00:00
test:
./testsuite.sh
2014-08-05 21:13:19 +00:00
clean:
2015-01-14 20:36:33 +00:00
go clean ./...