restic/Makefile

16 lines
206 B
Makefile
Raw Normal View History

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