Added "distclean" to top-level Makefile.
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Mon, 12 Sep 2005 13:55:54 +0000 (13:55 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Mon, 12 Sep 2005 13:55:54 +0000 (13:55 +0000)
doc/doc-txt/ChangeLog
src/Makefile

index a4af4ef3bd5a9f3bc0a4b5d063dd9301fc86f2e7..e510820be2bd415669d7d976e32ed81f9f074978 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.221 2005/09/12 13:50:03 ph10 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.222 2005/09/12 13:55:54 ph10 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -164,6 +164,9 @@ PH/39 Added a new log selector, "unknown_in_list", which provokes a log entry
 
 PH/40 RM_COMMAND is now used in the building process.
 
+PH/41 Added a "distclean" target to the top-level Makefile; it deletes all
+      the "build-* directories that it finds.
+
 
 Exim version 4.52
 -----------------
index 8702df9fbb4d8a2a5a42b6494bbeda50eac3ed0b..c1233fced619cdaceb3b1534ce80f8f6b6c20e68 100644 (file)
@@ -1,4 +1,4 @@
-# $Cambridge: exim/src/Makefile,v 1.3 2005/09/12 13:50:03 ph10 Exp $
+# $Cambridge: exim/src/Makefile,v 1.4 2005/09/12 13:55:54 ph10 Exp $
 
 # Top-level makefile for Exim; handles creating a build directory with
 # appropriate links, and then creating and running the main makefile in that
@@ -86,4 +86,6 @@ clean_exim:; cd build-$(buildname); \
         $(RM_COMMAND) -f *.o lookups/*.o lookups/*.a auths/*.o auths/*.a \
        routers/*.o routers/*.a transports/*.o transports/*.a
 
+distclean:; $(RM_COMMAND) -rf build-*
+
 # End of top-level makefile