# HG changeset patch # User Mike Becker # Date 1764511521 -3600 # Node ID 77cb6540d9d8f6f31fa6170a48c84da1ffa8a05c # Parent a145f47cc0a762dd30917da5ca8074a758a5964c replace dist-clean target with a proper distclean target diff -r a145f47cc0a7 -r 77cb6540d9d8 Makefile --- a/Makefile Sun Nov 30 14:40:39 2025 +0100 +++ b/Makefile Sun Nov 30 15:05:21 2025 +0100 @@ -32,8 +32,8 @@ clean: config.mk FORCE $(MAKE) -f make/makefile.mk clean -dist-clean: config.mk FORCE - $(MAKE) -f make/makefile.mk dist-clean +distclean: config.mk FORCE + $(MAKE) -f make/makefile.mk distclean compile: config.mk FORCE $(MAKE) -f make/makefile.mk compile diff -r a145f47cc0a7 -r 77cb6540d9d8 make/makefile.mk --- a/make/makefile.mk Sun Nov 30 14:40:39 2025 +0100 +++ b/make/makefile.mk Sun Nov 30 15:05:21 2025 +0100 @@ -31,11 +31,11 @@ @echo "[ Dist created: $(dist_dir)/ucx-$(VERSION).tar.gz ]" clean: FORCE + $(RMDIR) $(dist_dir) $(RMDIR) $(build_dir) -dist-clean: FORCE - $(RMDIR) $(dist_dir) - $(RMDIR) $(build_dir) +distclean: clean FORCE + $(RMFILE) $(root_dir)/config.mk compile: static shared