-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (28 loc) · 749 Bytes
/
Makefile
File metadata and controls
36 lines (28 loc) · 749 Bytes
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
.PHONY: help clean install install-dev
help:
@echo "install - install"
@echo "install-dev - install also development dependencies"
@echo "clean - clean all below"
install:
python -m pip install pipenv
pipenv install
install-dev:
python -m pip install pipenv
pipenv install --dev
clean: clean-pyc
clean-pyc:
find . -name '*~' -exec rm -f {} +
find . -name '*.log*' -delete
find . -name '*_cache' -exec rm -rf {} +
find . -name '*.egg-info' -exec rm -rf {} +
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '__pycache__' -exec rm -rf {} +
clean-results:
find . -name 'tito_*.csv' -delete
rm -rf certificates
mkdir certificates
rm -rf stamped
mkdir stamped
rm -rf blank
mkdir blank