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) \
|
2015-01-14 16:32:37 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
debug:
|
2015-01-14 20:36:33 +00:00
|
|
|
(cd cmd/restic; go build -a -tags debug)
|
2015-01-14 16:32:37 +00:00
|
|
|
|
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 ./...
|