src/python/jw/Makefile: use py-ns-dir.mk

Use py-ns-dir.mk at the first and only shared namespace node that the jw-pkg repo establishes: jw.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-05-26 14:47:28 +02:00
commit 2961ced779
Signed by: Jan Lindemann
GPG key ID: 3750640C9E25DD61
2 changed files with 3 additions and 7 deletions

View file

@ -1,10 +1,4 @@
TOPDIR = ../../.. TOPDIR = ../../..
include $(TOPDIR)/make/proj.mk include $(TOPDIR)/make/proj.mk
include $(JWBDIR)/make/dirs.mk include $(JWBDIR)/make/py-ns-dir.mk
all:
clean: py.clean
py.clean:
rm -rf __pycache__

View file

@ -0,0 +1,2 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)