-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (28 loc) · 802 Bytes
/
Makefile
File metadata and controls
43 lines (28 loc) · 802 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
38
39
40
41
42
all: docs build-pyEFI build-docker
clean: docs-clean tests-clean
build-pyEFI:
python -m build lib/pyEFI
build-docker:
docker build -t efi-est:latest .
docs: docs-html docs-coverage
docs-html: docs-perlpod
sphinx-build -M html docs/ build/ -n
docs-coverage:
sphinx-build -b coverage docs/ build/
docs-spelling: docs-spelling-perlpod
sphinx-build -b spelling docs/ build/
docs-clean:
rm -rf build/
docs-perlpod:
find pipelines -name "*.pl" | xargs -d\\n -n1 scripts/pod2rst.sh
perl scripts/color_palette_to_table.pl
docs-spelling-perlpod:
perl scripts/podcheck --search pipelines --wordlist docs/spelling_wordlist.txt
test: test-pyefi test-pipelines
test-pipelines:
bash tests/runtests.sh
test-pyefi:
pytest lib/pyEFI
tests-clean:
rm -rf .nextflow/
rm -rf tests/test_results/