# HG changeset patch # User Roy Marples # Date 1611269575 0 # Node ID b18c5670f6c0c5267f443f36cf645e1954a66937 # Parent 2ce33511de87e99de9ac7aee4addad4ca1c3ec04 Remove __pycache__ files in the clean target diff -r 2ce33511de87 -r b18c5670f6c0 Makefile --- a/Makefile Thu Jan 21 20:42:10 2021 +0000 +++ b/Makefile Thu Jan 21 22:52:55 2021 +0000 @@ -4,6 +4,7 @@ CHMOD?= chmod COMP?= xz COMP_SUFFIX?= .xz +FIND?= find LS?= ls RM?= rm TAR?= tar @@ -40,6 +41,8 @@ .PHONY: clean clean: $(RM) -rf build dist hg_fastimport.egg-info + $(FIND) . -type f -name "*.py[co]" -delete \ + -o -type d -name __pycache__ -delete .PHONY: distclean distclean: clean