summaryrefslogtreecommitdiff
path: root/pip/_vendor/Makefile
blob: 416249aca76b0a5a09953335694252f1c461e451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all: clean vendor

clean:
	@# Delete vendored items
	find . -maxdepth 1 -mindepth 1 -type d -exec rm -rf {} \;

vendor:
	@# Install vendored libraries
	pip install -t . -r vendor.txt

	@# Cleanup .egg-info directories
	rm -rf *.egg-info