From 4e15552fc2e3a83e201d9b4b78f10a358d18877b Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Sun, 31 May 2026 12:31:35 +0200 Subject: [PATCH] cmds.projects.lib: Add Module Add a sub-module for code that's too specific to jw.pkg.cmds.projects to go into jw.pkg.lib but too generic to go into a command module. Long-term, it might be a good idea to create a place for code which jw-pkg doesn't exclusively use for its own purposes. jw.lib, for example. Then, liberated from the burden to be generally useful also externally, jw.pkg.lib might be a better fit for code currently in jw.pkg.cmds.xxx.lib, and a more natural place usable across subcommands. Signed-off-by: Jan Lindemann --- src/python/jw/pkg/cmds/projects/lib/Makefile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/python/jw/pkg/cmds/projects/lib/Makefile diff --git a/src/python/jw/pkg/cmds/projects/lib/Makefile b/src/python/jw/pkg/cmds/projects/lib/Makefile new file mode 100644 index 00000000..19fedac9 --- /dev/null +++ b/src/python/jw/pkg/cmds/projects/lib/Makefile @@ -0,0 +1,4 @@ +TOPDIR = ../../../../../../.. + +include $(TOPDIR)/make/proj.mk +include $(JWBDIR)/make/py-mod.mk