remove more autotools dribbles and other cruft
This commit is contained in:
parent
7e70dc7340
commit
62b692fd6d
5 changed files with 14 additions and 48 deletions
3
clean.sh
3
clean.sh
|
@ -14,5 +14,6 @@ find . | perl -ne 'print if (/\/storefile.txt$/)' | xargs rm -f
|
|||
find . | perl -ne 'print if (/\/logfile.txt$/)' | xargs rm -f
|
||||
find . | perl -ne 'print if (/\/blob._file.txt$/)' | xargs rm -f
|
||||
rm -f test/gmon.out test/lladd/gmon.out
|
||||
rm -f m4/ltsugar.m4 m4/libtool.m4 m4/ltversion.m4 m4/lt~obsolete.m4 m4/ltoptions.m4
|
||||
rm -f configure.in
|
||||
rm -f config.guess config.h config.log config.status config.sub install-sh ltmain.sh mkinstalldirs py-compile
|
||||
rm -f m4/ltsugar.m4 m4/libtool.m4 m4/ltversion.m4 m4/lt~obsolete.m4 m4/ltoptions.m4 missing stamp-h1
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
5-1-05 RCS did this:
|
||||
|
||||
Created branch for blast stuff:
|
||||
|
||||
cvs tag -b blast
|
||||
cvs checkout -r blast lladd
|
|
@ -1,40 +0,0 @@
|
|||
#! /bin/sh
|
||||
# mkinstalldirs --- make directory hierarchy
|
||||
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
|
||||
# Created: 1993-05-16
|
||||
# Public domain
|
||||
|
||||
# $Id$
|
||||
|
||||
errstatus=0
|
||||
|
||||
for file
|
||||
do
|
||||
set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
|
||||
shift
|
||||
|
||||
pathcomp=
|
||||
for d
|
||||
do
|
||||
pathcomp="$pathcomp$d"
|
||||
case "$pathcomp" in
|
||||
-* ) pathcomp=./$pathcomp ;;
|
||||
esac
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
echo "mkdir $pathcomp"
|
||||
|
||||
mkdir "$pathcomp" || lasterr=$?
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
errstatus=$lasterr
|
||||
fi
|
||||
fi
|
||||
|
||||
pathcomp="$pathcomp/"
|
||||
done
|
||||
done
|
||||
|
||||
exit $errstatus
|
||||
|
||||
# mkinstalldirs ends here
|
12
reconf
12
reconf
|
@ -121,7 +121,19 @@ Proceeding with system's default automake. Expect trouble.
|
|||
$ENV{AUTOMAKE} = "$automake_base-$version";
|
||||
}
|
||||
|
||||
my $rmNEWS = 1;
|
||||
my $rmChangeLog = 1;
|
||||
if(-f "NEWS") { $rmNEWS = 0; } else { system("touch NEWS"); }
|
||||
if(-f "ChangeLog") { $rmChangeLog = 0; } else { system("touch ChangeLog"); }
|
||||
|
||||
|
||||
|
||||
system("rm configure.in");
|
||||
system("ln -s configure.in.automake configure.in");
|
||||
|
||||
system ("autoreconf -i", @ARGV);
|
||||
|
||||
if($rmNEWS) { system("rm NEWS"); }
|
||||
if($rmChangeLog) { system("rm ChangeLog"); }
|
||||
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
timestamp
|
Loading…
Reference in a new issue