The "Remove everything non-essential for make clean all" commit (bc883deed)
dropped disabled.mk, judged non-essential from the jw-pkg tree's own
perspective. Legacy projects still include it, though: their Makefiles use
it to replace a directory build with no-op targets that report the target
as disabled. Without the file, make fails in such projects in any workspace
that mounts a current jw-pkg.
Re-add it verbatim. The post-purge re-adds dummy.mk and dummy-topdir.mk
cover the current-style stubs; disabled.mk covers the legacy includes.
Assisted-by: unsloth/Qwen3.8-27B-GGUF:Q4_K_M with pi.dev v0.85.1
Signed-off-by: Jan Lindemann <jan@janware.com>
7 lines
149 B
Makefile
7 lines
149 B
Makefile
DISABLED = @echo Target \"$1\" in $(shell pwd)/Makefile has been disabled.
|
|
|
|
all:
|
|
$(call DISABLED,$@)
|
|
|
|
install clean distclean:
|
|
$(call DISABLED,$@)
|