Add py-check.mk and use it from py-topdir.mk and py-rules.mk. This removes redundant check definitions, making sure that that checks run from a repo's subdirectory match the checks run from its toplevel directory. Signed-off-by: Jan Lindemann <jan@janware.com>
35 lines
992 B
Makefile
35 lines
992 B
Makefile
all:
|
|
|
|
py.clean:
|
|
$(RM) -f *.done *.pyc *.rep
|
|
/bin/bash $(JWB_SCRIPT_DIR)/scm.sh clean -f __init__.py
|
|
$(RM) -rf __pycache__ .mypy_cache
|
|
|
|
install-dirs.done:
|
|
$(INSTALL) -d -m $(PYJWBDIRMODE) -o $(PYJWBDIROWNER) -g $(PYJWBDIRGROUP) $(PY_INSTALL_DIRS)
|
|
touch $@
|
|
|
|
install-reg.done: install-dirs.done $(PY_INSTALLED_REG)
|
|
touch $@
|
|
|
|
$(PY_INSTALL_DIR_PY)/%.py: %.py
|
|
$(INSTALL) -p -m $(PYMODMODE) -o $(PYMODOWNER) -g $(PYMODGROUP) $< $@
|
|
|
|
ifneq ($(PYTHON_MAJOR),3)
|
|
%.pyc: %.py
|
|
else
|
|
__pycache__/%.$(PY_CPYTHON_PREFIX).pyc: %.py
|
|
endif
|
|
$(PYTHON) -c "import py_compile; py_compile.compile(\"$<\", doraise=True)"
|
|
|
|
ifeq ($(PYTHON_MAJOR),3)
|
|
$(PY_INSTALL_DIR_PY)/__pycache__/%.$(PY_CPYTHON_PREFIX).pyc: __pycache__/%.$(PY_CPYTHON_PREFIX).pyc
|
|
else
|
|
$(PY_INSTALL_DIR_PY)/%.pyc: %.pyc
|
|
endif
|
|
$(INSTALL) -p -m $(PYMODMODE) -o $(PYMODOWNER) -g $(PYMODGROUP) $< $@
|
|
|
|
include $(JWBDIR)/make/py-check.mk
|
|
|
|
$(PY_INSTALL_DIR_PY)/py.typed: py.typed
|
|
$(INSTALL) -p -m $(PYMODMODE) -o $(PYMODOWNER) -g $(PYMODGROUP) $< $@
|