~dricottone/filters

ref: d79aed132890f93f5a4db83aa0a4704676a3c828 filters/Makefile -rw-r--r-- 758 bytes
d79aed13Dominic Ricottone Refactored algorithms + improved documentation 4 years ago
                                                                                
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
unittest = unittest --color
#unittest = python -m unittest
unittest_discover = unittest --color --working-directory .
#unittest_discover = python -m unittest discover tests --top-level-directory . --start-directory
python = python3

clean:
	rm -rf **/__pycache__ **/__mypycache__ **/*.pyc build dist filters.egg-info

test:
	$(python) -m py_compile filter/*.py rng/*.py
	#$(unittest_discover) tests

build:
	gap filter/cli.toml --no-debug-mode --output=filter/cli.py
	gap rng/cli.toml --no-debug-mode --output=rng/cli.py
	$(python) setup.py sdist bdist_wheel

unittest:
	$(unittest_discover) tests --verbose
	$(unittest) tests/generated_syntax_tests.py --verbose

reinstall: uninstall install

install:
	pipx install .

uninstall:
	pipx uninstall filters