2015-11-07 12:16:33 +00:00
|
|
|
SHELL = /bin/bash
|
2014-04-24 17:11:08 +00:00
|
|
|
TAG := $(shell git describe --tags)
|
|
|
|
LAST_TAG := $(shell git describe --tags --abbrev=0)
|
2014-07-03 20:43:14 +00:00
|
|
|
NEW_TAG := $(shell echo $(LAST_TAG) | perl -lpe 's/v//; $$_ += 0.01; $$_ = sprintf("v%.2f", $$_)')
|
2014-04-24 17:11:08 +00:00
|
|
|
|
2014-07-19 12:12:20 +00:00
|
|
|
rclone:
|
2014-04-24 17:11:08 +00:00
|
|
|
@go version
|
2014-07-19 12:12:20 +00:00
|
|
|
go install -v ./...
|
|
|
|
|
|
|
|
test: rclone
|
|
|
|
go test ./...
|
2015-12-30 00:18:31 +00:00
|
|
|
cd fs && go run test_all.go
|
2014-03-28 22:34:13 +00:00
|
|
|
|
2015-09-22 17:47:16 +00:00
|
|
|
check: rclone
|
|
|
|
go vet ./...
|
2016-03-28 10:36:52 +00:00
|
|
|
errcheck ./...
|
2015-11-14 09:20:34 +00:00
|
|
|
goimports -d . | grep . ; test $$? -eq 1
|
2016-03-28 10:36:52 +00:00
|
|
|
golint ./... | grep -E -v '(StorageUrl|CdnUrl)' ; test $$? -eq 1
|
2015-09-22 17:47:16 +00:00
|
|
|
|
2015-06-06 09:05:21 +00:00
|
|
|
doc: rclone.1 MANUAL.html MANUAL.txt
|
2014-04-24 17:11:08 +00:00
|
|
|
|
2015-06-06 09:05:21 +00:00
|
|
|
rclone.1: MANUAL.md
|
|
|
|
pandoc -s --from markdown --to man MANUAL.md -o rclone.1
|
2014-04-24 17:11:08 +00:00
|
|
|
|
2015-06-06 09:05:21 +00:00
|
|
|
MANUAL.md: make_manual.py docs/content/*.md
|
|
|
|
./make_manual.py
|
2014-04-24 17:11:08 +00:00
|
|
|
|
2015-06-06 09:05:21 +00:00
|
|
|
MANUAL.html: MANUAL.md
|
|
|
|
pandoc -s --from markdown --to html MANUAL.md -o MANUAL.html
|
|
|
|
|
|
|
|
MANUAL.txt: MANUAL.md
|
|
|
|
pandoc -s --from markdown --to plain MANUAL.md -o MANUAL.txt
|
2014-04-24 17:11:08 +00:00
|
|
|
|
|
|
|
install: rclone
|
|
|
|
install -d ${DESTDIR}/usr/bin
|
2014-07-19 12:12:20 +00:00
|
|
|
install -t ${DESTDIR}/usr/bin ${GOPATH}/bin/rclone
|
2014-04-24 17:11:08 +00:00
|
|
|
|
2014-03-28 22:34:13 +00:00
|
|
|
clean:
|
2014-04-24 17:11:08 +00:00
|
|
|
go clean ./...
|
2014-03-28 22:34:13 +00:00
|
|
|
find . -name \*~ | xargs -r rm -f
|
2014-04-17 21:32:39 +00:00
|
|
|
rm -rf build docs/public
|
2016-01-31 16:33:20 +00:00
|
|
|
rm -f rclone rclonetest/rclonetest
|
2014-03-28 22:34:13 +00:00
|
|
|
|
|
|
|
website:
|
2014-04-17 21:32:39 +00:00
|
|
|
cd docs && hugo
|
2014-03-28 22:34:13 +00:00
|
|
|
|
|
|
|
upload_website: website
|
2014-07-19 12:12:20 +00:00
|
|
|
rclone -v sync docs/public memstore:www-rclone-org
|
2014-03-28 22:34:13 +00:00
|
|
|
|
|
|
|
upload:
|
2014-07-19 12:12:20 +00:00
|
|
|
rclone -v copy build/ memstore:downloads-rclone-org
|
2014-03-28 22:34:13 +00:00
|
|
|
|
2015-11-23 21:58:54 +00:00
|
|
|
upload_github:
|
2016-01-02 12:18:32 +00:00
|
|
|
./upload-github $(TAG)
|
2015-11-23 21:58:54 +00:00
|
|
|
|
2014-04-24 17:11:08 +00:00
|
|
|
cross: doc
|
|
|
|
./cross-compile $(TAG)
|
2014-03-28 22:34:13 +00:00
|
|
|
|
2016-02-21 10:29:48 +00:00
|
|
|
beta:
|
2015-11-11 16:55:49 +00:00
|
|
|
./cross-compile $(TAG)β
|
|
|
|
rm build/*-current-*
|
|
|
|
rclone -v copy build/ memstore:pub-rclone-org/$(TAG)β
|
2015-11-30 10:10:41 +00:00
|
|
|
@echo Beta release ready at http://pub.rclone.org/$(TAG)%CE%B2/
|
2015-11-11 16:55:49 +00:00
|
|
|
|
2016-01-16 14:10:57 +00:00
|
|
|
serve: website
|
2014-04-17 21:32:39 +00:00
|
|
|
cd docs && hugo server -v -w
|
2014-04-24 17:11:08 +00:00
|
|
|
|
2016-01-31 17:50:13 +00:00
|
|
|
tag: doc
|
2014-04-24 17:11:08 +00:00
|
|
|
@echo "Old tag is $(LAST_TAG)"
|
|
|
|
@echo "New tag is $(NEW_TAG)"
|
2015-09-22 17:47:16 +00:00
|
|
|
echo -e "package fs\n\n// Version of rclone\nconst Version = \"$(NEW_TAG)\"\n" | gofmt > fs/version.go
|
2014-04-24 17:11:08 +00:00
|
|
|
perl -lpe 's/VERSION/${NEW_TAG}/g; s/DATE/'`date -I`'/g;' docs/content/downloads.md.in > docs/content/downloads.md
|
|
|
|
git tag $(NEW_TAG)
|
2015-06-06 09:05:21 +00:00
|
|
|
@echo "Add this to changelog in docs/content/changelog.md"
|
2014-06-26 16:57:32 +00:00
|
|
|
@echo " * $(NEW_TAG) -" `date -I`
|
2014-04-24 17:11:08 +00:00
|
|
|
@git log $(LAST_TAG)..$(NEW_TAG) --oneline
|
|
|
|
@echo "Then commit the changes"
|
2015-06-06 09:05:21 +00:00
|
|
|
@echo git commit -m \"Version $(NEW_TAG)\" -a -v
|
2014-04-24 17:11:08 +00:00
|
|
|
@echo "And finally run make retag before make cross etc"
|
|
|
|
|
|
|
|
retag:
|
2014-06-26 16:57:32 +00:00
|
|
|
git tag -f $(LAST_TAG)
|
2014-07-26 16:18:29 +00:00
|
|
|
|
|
|
|
gen_tests:
|
2015-02-14 18:48:08 +00:00
|
|
|
cd fstest/fstests && go generate
|