File: prepare

package info (click to toggle)
fitsh 0.9.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,024 kB
  • sloc: ansic: 56,150; makefile: 1,147; sh: 806
file content (17 lines) | stat: -rwxr-xr-x 266 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

AUTOCONF=${AUTOCONF:-autoconf}

rm -r -f ./autom4te.cache ./configure ./config.cache ./config.status ./config.log

if test "x$1" = "xclean" ; then
	exit 0
elif ${AUTOCONF} ; then
	rm -r -f autom4te.cache
	exit	0
else
	rm -r -f autom4te.cache
	exit	1
fi