make: Re-add files necessary for building jw-python

Re-add everything necessary for building and packaging jw-python.

ldlibpath.mk is not strictly necessary, but might be with other
Python packages backed by compiled C-code, so leave it in.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2025-11-13 17:27:14 +01:00
commit 0a9340af49
7 changed files with 261 additions and 0 deletions

14
make/py-mods.mk Normal file
View file

@ -0,0 +1,14 @@
include $(JWBDIR)/make/defs.mk
include $(JWBDIR)/make/py-defs.mk
include $(JWBDIR)/make/dirs.mk
include $(JWBDIR)/make/dev-utils.mk
include $(JWBDIR)/make/py-rules.mk
all:
install:
clean: py.clean
distclean:
ifeq ($(PY_RUN_CHECK_AFTER_BUILD),true)
all: check
endif