weechat-matrix/Makefile

26 lines
541 B
Makefile
Raw Normal View History

2018-09-12 20:13:32 +02:00
.PHONY: install install-lib phony test typecheck
2018-01-30 10:56:29 +01:00
WEECHAT_HOME ?= $(HOME)/.weechat
PREFIX ?= $(WEECHAT_HOME)
PYTHON ?= python
2018-01-30 10:56:29 +01:00
lib := $(patsubst matrix/%.py, $(DESTDIR)$(PREFIX)/python/matrix/%.py, \
$(wildcard matrix/*.py))
install: install-lib
install -Dm644 main.py $(DESTDIR)$(PREFIX)/python/matrix.py
install-lib: $(lib)
2018-01-31 13:56:31 +01:00
phony:
$(DESTDIR)$(PREFIX)/python/matrix/%.py: matrix/%.py phony
2018-01-30 10:56:29 +01:00
install -Dm644 $< $@
test:
2018-03-18 23:30:45 +01:00
python3 -m pytest
python2 -m pytest
2018-09-12 20:13:32 +02:00
typecheck:
mypy -p matrix --ignore-missing-imports --warn-redundant-casts