chap-command-fuse/Makefile
2024-10-19 21:23:02 -05:00

15 lines
254 B
Makefile

# SPDX-FileCopyrightText: 2023 Jeff Epler <jepler@gmail.com>
#
# SPDX-License-Identifier: MIT
.PHONY: mypy
mypy: venv/bin/mypy
venv/bin/mypy -p chap
venv/bin/mypy:
python -mvenv venv
venv/bin/pip install chap mypy
.PHONY: clean
clean:
rm -rf venv