diff --git a/ChangeLog b/ChangeLog
index 77be576455401475d28fa129c1656d67fff30486..9f67fcb4f7f24fbb1714aef7a56f3491f0cdce0b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2004-11-18  Niels Möller  <nisse@lysator.liu.se>
 
+	* Makefile.in (clean-here): The clean target should not delete the
+	dependency files. Moved to the distclean target.
+	* examples/Makefile.in: Likewise.
+	* testsuite/Makefile.in: Likewise.
+	* tools/Makefile.in: Likewise.
+	
 	* configure.ac (ASM_SYMBOL_PREFIX): Fixed test.
 	(dummy-dep-files): Added quotes to sed command.
 
diff --git a/Makefile.in b/Makefile.in
index 2249158d16624eead3a6fa5f1922af8cfc13c021..601b7ba7cf30ee10957c5f4b9a0dbb78845c8eb7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -320,11 +320,11 @@ distcheck: dist
 	$(rm_distcheck)
 
 clean-here:
-	-rm -f $(TARGETS) *.$(OBJEXT) *.p$(OBJEXT) *.d *.s
+	-rm -f $(TARGETS) *.$(OBJEXT) *.p$(OBJEXT) *.s
 
 distclean-here: clean-here
 	-rm -f config.h stamp-h config.log config.status \
-	config.make config.m4 Makefile nettle-types.h
+	config.make config.m4 Makefile nettle-types.h *.d
 
 DEP_FILES = $(SOURCES:.c=.$(OBJEXT).d) $(SOURCES:.c=.p$(OBJEXT).d)
 include $(DEP_FILES)
diff --git a/examples/Makefile.in b/examples/Makefile.in
index 79315d67e8b8c382093c34302e2e1fd0c4b6a37d..0fae6c6dc425ebc1dece90db4abeafb119979255 100644
--- a/examples/Makefile.in
+++ b/examples/Makefile.in
@@ -48,9 +48,9 @@ distdir: $(DISTFILES)
 	cp $^ $(distdir)
 
 clean:
-	-rm -f $(TARGETS) *.o *.d
+	-rm -f $(TARGETS) *.o
 
 distclean: clean
-	-rm -f Makefile
+	-rm -f Makefile *.d
 
 include $(SOURCES:.c=.$(OBJEXT).d)
diff --git a/testsuite/Makefile.in b/testsuite/Makefile.in
index 53afe8ca495b9f7823674c5e3b01d640da8c0599..5dc20d622df0d428ee0726a227c8a551b5db0efe 100644
--- a/testsuite/Makefile.in
+++ b/testsuite/Makefile.in
@@ -61,9 +61,9 @@ distdir: $(DISTFILES)
 	cp $^ $(distdir)
 
 clean:
-	-rm -f $(TARGETS) *.o *.d test.in test1.out test2.out
+	-rm -f $(TARGETS) *.o test.in test1.out test2.out
 
 distclean: clean
-	-rm -f Makefile
+	-rm -f Makefile *.d
 
 include $(SOURCES:.c=.$(OBJEXT).d)
diff --git a/tools/Makefile.in b/tools/Makefile.in
index 8c2de7f806096c622f4ecbd85bcd88ed5db5ee43..de25ba83082cd3bc93371a0d3eb27aae70ae0744 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -50,9 +50,9 @@ distdir: $(DISTFILES)
 	cp $^ $(distdir)
 
 clean:
-	-rm -f $(TARGETS) *.o *.d
+	-rm -f $(TARGETS) *.o
 
 distclean: clean
-	-rm -f Makefile
+	-rm -f Makefile *.d
 
 include $(SOURCES:.c=.$(OBJEXT).d)