From 4ea3c91e941083f5aa72eca2463510f1f9f7a52b Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Mon, 17 Aug 2026 12:07:10 +0200 Subject: [PATCH] doc: Add subdir Add $(TOPDIR)/doc with some subdirectories: - jw-pkg: Using the jw-pkg application, mirroring the subcommand structure in its subdirectories. At this point only packages, projects and secrets are added, all empty To be expanded as needed - python: jw-pkg Python API Signed-off-by: Jan Lindemann --- doc/Makefile | 4 ++++ doc/jw-pkg/Makefile | 4 ++++ doc/jw-pkg/packages/Makefile | 4 ++++ doc/jw-pkg/projects/Makefile | 4 ++++ doc/jw-pkg/secrets/Makefile | 4 ++++ doc/python/Makefile | 4 ++++ 6 files changed, 24 insertions(+) create mode 100644 doc/Makefile create mode 100644 doc/jw-pkg/Makefile create mode 100644 doc/jw-pkg/packages/Makefile create mode 100644 doc/jw-pkg/projects/Makefile create mode 100644 doc/jw-pkg/secrets/Makefile create mode 100644 doc/python/Makefile diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 00000000..a9018b59 --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,4 @@ +TOPDIR = .. + +include $(TOPDIR)/make/proj.mk +include $(JWBDIR)/make/dirs.mk diff --git a/doc/jw-pkg/Makefile b/doc/jw-pkg/Makefile new file mode 100644 index 00000000..b1ec41b6 --- /dev/null +++ b/doc/jw-pkg/Makefile @@ -0,0 +1,4 @@ +TOPDIR = ../.. + +include $(TOPDIR)/make/proj.mk +include $(JWBDIR)/make/dirs.mk diff --git a/doc/jw-pkg/packages/Makefile b/doc/jw-pkg/packages/Makefile new file mode 100644 index 00000000..1fda4b76 --- /dev/null +++ b/doc/jw-pkg/packages/Makefile @@ -0,0 +1,4 @@ +TOPDIR = ../../.. + +include $(TOPDIR)/make/proj.mk +include $(JWBDIR)/make/doc.mk diff --git a/doc/jw-pkg/projects/Makefile b/doc/jw-pkg/projects/Makefile new file mode 100644 index 00000000..1fda4b76 --- /dev/null +++ b/doc/jw-pkg/projects/Makefile @@ -0,0 +1,4 @@ +TOPDIR = ../../.. + +include $(TOPDIR)/make/proj.mk +include $(JWBDIR)/make/doc.mk diff --git a/doc/jw-pkg/secrets/Makefile b/doc/jw-pkg/secrets/Makefile new file mode 100644 index 00000000..1fda4b76 --- /dev/null +++ b/doc/jw-pkg/secrets/Makefile @@ -0,0 +1,4 @@ +TOPDIR = ../../.. + +include $(TOPDIR)/make/proj.mk +include $(JWBDIR)/make/doc.mk diff --git a/doc/python/Makefile b/doc/python/Makefile new file mode 100644 index 00000000..28a33162 --- /dev/null +++ b/doc/python/Makefile @@ -0,0 +1,4 @@ +TOPDIR = ../.. + +include $(TOPDIR)/make/proj.mk +include $(JWBDIR)/make/doc.mk