diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2024-08-07 03:34:46 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2024-08-07 03:34:46 (GMT) |
commit | d6f30e2ddf1da885a5a64f8b2f5ce0cab24aecef (patch) | |
tree | 897126395230292e2aa998846d1c5343a2135932 | |
parent | e98821442db84abac832cae17e52b135ff6a95a0 (diff) | |
download | tcl-d6f30e2ddf1da885a5a64f8b2f5ce0cab24aecef.zip tcl-d6f30e2ddf1da885a5a64f8b2f5ce0cab24aecef.tar.gz tcl-d6f30e2ddf1da885a5a64f8b2f5ce0cab24aecef.tar.bz2 |
Make realclean/hose target consistent with clean with respect to pkgs cleanup
-rw-r--r-- | win/makefile.vc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index cba51ee..a4b1b26 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -708,6 +708,14 @@ clean-pkgs: popd \
)
+hose-pkgs:
+ @for /d %d in ($(PKGSDIR)\*) do \
+ @if exist "%~fd\win\makefile.vc" ( \
+ pushd "%~fd\win" & \
+ $(MAKE) -$(MAKEFLAGS) -f makefile.vc TCLDIR=$(ROOT) hose &\
+ popd \
+ )
+
#---------------------------------------------------------------------
# Regenerate the stubs files. [Development use only]
#---------------------------------------------------------------------
@@ -1188,7 +1196,7 @@ tidy: @if exist $(TCLREGLIB) del $(TCLREGLIB)
clean: default-clean clean-pkgs
-hose: default-hose
+hose: default-hose hose-pkgs
realclean: hose
.PHONY:
|