make make clean delete stray html and .dep files

we had left them alone if they didn't have a parent wml file, which
meant we left behind old translations of pages that no longer have a
large enough fraction of translated strings.

fixes bug 4000.
This commit is contained in:
Roger Dingledine 2011-09-12 09:51:43 +00:00
parent 932af2743e
commit cc35e1fc1f

View File

@ -305,7 +305,7 @@ all: $(HTMLFILES)
dep: $(DEPFILES)
clean:
rm -f $(HTMLFILES) $(DEPFILES)
rm -f *.html.* .deps/*.html.*.d
for sub in $(SUBDIRS); do \
$(MAKE) -C "$$sub" WMLBASE=../$(WMLBASE) clean; \
done