Browse code

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.

Roger Dingledine authored on 12/09/2011 11:51:43
Showing 1 changed files
... ...
@@ -305,7 +305,7 @@ all: $(HTMLFILES)
305 305
 
306 306
 dep: $(DEPFILES)
307 307
 clean:
308
-	rm -f $(HTMLFILES) $(DEPFILES)
308
+	rm -f *.html.* .deps/*.html.*.d
309 309
 	for sub in $(SUBDIRS); do \
310 310
 		$(MAKE) -C "$$sub" WMLBASE=../$(WMLBASE) clean; \
311 311
 	done