mirror of
https://github.com/octoleo/restic.git
synced 2024-11-11 15:51:02 +00:00
2b39f9f4b2
Among others, this updates minio-go, so that the new "eu-west-3" zone for AWS is supported.
17 lines
319 B
Plaintext
17 lines
319 B
Plaintext
# Build doc.go from template and snippets.
|
|
|
|
SHELL=/bin/bash
|
|
|
|
../doc.go: build doc-snippets.go doc.template snipdoc.awk
|
|
@tmp=$$(mktemp) && \
|
|
awk -f snipdoc.awk doc-snippets.go doc.template > $$tmp && \
|
|
chmod +w $@ && \
|
|
mv $$tmp $@ && \
|
|
chmod -w $@
|
|
@echo "wrote $@"
|
|
|
|
.PHONY: build
|
|
|
|
build:
|
|
go build doc-snippets.go
|