-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (30 loc) · 799 Bytes
/
Makefile
File metadata and controls
37 lines (30 loc) · 799 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
37
VENV = .venv
PYTHON = $(VENV)/bin/python
PIP = $(VENV)/bin/pip
SHELL = zsh
.PHONY: init clean readme report documentation
init:
python -m venv $(VENV)
$(PIP) install -r requirements.txt
$(PIP) install -r requirements-dev.txt
clean:
rm -rf $(VENV)
readme:
@cat markdown/readme_cruft.md > README.md
@echo "" >> README.md
@echo "" >> README.md
@cat markdown/running.md >> README.md
@echo "" >> README.md
@echo "" >> README.md
@cat markdown/testing.md >> README.md
@echo "" >> README.md
@echo "" >> README.md
@cat markdown/challenge.md >> README.md
@echo README.md was updated
report:
@cat markdown/report_header.md > report.md
@echo "" >> README.md
@echo "" >> README.md
@cat markdown/pipeline_diagram.md >> README.md
@echo report.md was updated
documentation: readme report