1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 14:00:46 +00:00
wting_autojump/Makefile

44 lines
1.1 KiB
Makefile
Raw Normal View History

VERSION = $(shell grep -oE "[0-9]+\.[0-9]+\.[0-9]+" bin/autojump)
TAGNAME = release-v$(VERSION)
2014-01-01 00:39:45 +00:00
.PHONY: docs install uninstall lint tar test
install:
install.sh
uninstall:
uninstall.sh
docs:
2012-04-18 06:38:49 +00:00
pandoc -s -w man docs/manpage_header.md docs/header.md docs/body.md -o docs/autojump.1
pandoc -s -w markdown docs/header.md docs/install.md docs/development.md docs/body.md -o README.md
lint:
2013-12-28 17:34:13 +00:00
@flake8 ./ --config=setup.cfg
2013-11-24 22:47:14 +00:00
release: docs
# Check for tag existence
# git describe release-$(VERSION) 2>&1 >/dev/null || exit 1
# Modify autojump with version
./tools/git-version.sh $(TAGNAME)
# Commit the version change
git commit -m "version numbering" ./bin/autojump
# Create tag
git tag -a $(TAGNAME)
# Create tagged archive
git archive --format=tar --prefix autojump_v$(VERSION)/ $(TAGNAME) | gzip > autojump_v$(VERSION).tar.gz
sha1sum autojump_v$(VERSION).tar.gz
2012-05-13 02:31:58 +00:00
2012-10-31 03:30:45 +00:00
tar:
# Create tagged archive
git archive --format=tar --prefix autojump_v$(VERSION)/ $(TAGNAME) | gzip > autojump_v$(VERSION).tar.gz
sha1sum autojump_v$(VERSION).tar.gz
2013-12-31 22:34:35 +00:00
test:
@find . -type f -iname "*.pyc" -delete
testify -v tests -x disabled