From: simon Date: Thu, 8 Jan 2009 18:21:33 +0000 (+0000) Subject: Another patch from Colin, providing a "make distclean" target in the X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/64b7adb9100eb6d5c3e61dad7eebb4e8b7b747a1?ds=inline Another patch from Colin, providing a "make distclean" target in the autoconf makefile. git-svn-id: svn://svn.tartarus.org/sgt/putty@8401 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/mkfiles.pl b/mkfiles.pl index 0bbd5666..835a9406 100755 --- a/mkfiles.pl +++ b/mkfiles.pl @@ -1048,6 +1048,9 @@ if (defined $makefiles{'ac'}) { print $makefile_extra{'gtk'}->{'end'}; print "\nclean:\n". "\trm -f *.o". (join "", map { " $_" } &progrealnames("X:U")) . "\n"; + print "\ndistclean: clean\n". + "\t". &splitline("rm -f config.status config.cache config.log ". + "configure.lineno config.status.lineno Makefile") . "\n"; print "\nFORCE:\n"; select STDOUT; close OUT; }