[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/gitpython-developers/gitdb/master/Makefile [Back]  [Original]

.PHONY: all clean release force_release

all:
	@grep -Ee '^[a-z].*:' Makefile | cut -d: -f1 | grep -vF all

clean:
	rm -rf build/ dist/ .eggs/ .tox/

force_release: clean
	./build-release.sh
	twine upload dist/*
	git push --tags origin master

Web Proxy Viewer  |  New URL  |  Original Page