/ Makefile
Makefile
 1  # SPDX-FileCopyrightText: 2023 Jeff Epler <jepler@gmail.com>
 2  #
 3  # SPDX-License-Identifier: MIT
 4  
 5  .PHONY: mypy
 6  mypy: venv/bin/mypy
 7  	venv/bin/mypy --strict -p chap
 8  
 9  venv/bin/mypy:
10  	python -mvenv venv
11  	venv/bin/pip install chap mypy
12  
13  .PHONY: clean
14  clean:
15  	rm -rf venv