Another patch from Colin, providing a "make distclean" target in the

autoconf makefile.

[originally from svn r8401]
This commit is contained in:
Simon Tatham 2009-01-08 18:21:33 +00:00
Родитель 1bb22cfa1f
Коммит 6d9f007684
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -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;
}