Split system dependent commands to clean modular-gc

This commit is contained in:
Nobuyoshi Nakada 2024-12-10 11:18:38 +09:00 committed by Nobuyoshi Nakada
parent ce2f398386
commit f12e2622c1
Notes: git 2024-12-10 03:32:05 +00:00
3 changed files with 15 additions and 6 deletions

View file

@ -567,6 +567,12 @@ ext/distclean ext/realclean .bundle/distclean .bundle/realclean::
.bundle/realclean::
@$(RMALL) $(tooldir)/bunlder/*.lock $(srcdir)/.bundle
gc/clean gc/distclean gc/realclean::
- for gc in gc/*/; do ($(CHDIR) $$gc && exec $(MAKE) TARGET_SO_DIR=./ $(@F)); done || $(NULLCMD)
gc/distclean gc/realclean::
- for gc in gc/*/; do $(RMDIR) $$gc; done || $(NULLCMD)
clean-enc distclean-enc realclean-enc:
@test -f "$(ENC_MK)" || exit 0; \
echo $(@:-enc=ing) encodings; \