-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
45 lines (36 loc) · 1.28 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
###############################################################################
# Common make values.
run = pipenv run
lint = $(run) pylint
##############################################################################
# Show help by default.
.DEFAULT_GOAL := help
##############################################################################
# Setup/update packages the system requires.
.PHONY: setup
setup: # Install development/tool dependencies
pipenv sync --dev
.PHONY: resetup
resetup: # Recreate the virtual environment from scratch
rm -rf $(shell pipenv --venv)
pipenv sync --dev
.PHONY: depsoutdated
depsoutdated: # Show a list of outdated dependencies
pipenv update --outdated
.PHONY: depsupdate
depsupdate: # Update all dependencies
pipenv update --dev
.PHONY: depsshow
depsshow: # Show the dependency graph
pipenv graph
##############################################################################
# Checking/testing/linting/etc.
.PHONY: lint
lint: # Run pylint over the code.
$(lint) git2gantt
##############################################################################
# Utility.
.PHONY: help
help: # Display this help
@grep -Eh "^[a-z]+:.+# " $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.+# "}; {printf "%-20s %s\n", $$1, $$2}'
### Makefile ends here