weechat-matrix/Makefile

32 lines
762 B
Makefile
Raw Normal View History

2019-01-23 16:39:19 +01:00
.PHONY: install install-lib install-dir uninstall 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-dir install-lib
install -m644 main.py $(DESTDIR)$(PREFIX)/python/matrix.py
2018-01-30 10:56:29 +01:00
install-lib: $(lib)
install-dir:
install -d $(DESTDIR)$(PREFIX)/python/matrix
uninstall:
rm $(DESTDIR)$(PREFIX)/python/matrix.py $(DESTDIR)$(PREFIX)/python/matrix/*
rmdir $(DESTDIR)$(PREFIX)/python/matrix
2018-01-30 10:56:29 +01:00
2018-01-31 13:56:31 +01:00
phony:
$(DESTDIR)$(PREFIX)/python/matrix/%.py: matrix/%.py phony
install -m644 $< $@
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