File: auto_bootstrap

package info (click to toggle)
gom 0.30.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 924 kB
  • sloc: ansic: 3,021; sh: 1,810; makefile: 36
file content (17 lines) | stat: -rwxr-xr-x 462 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash -e
if [ "${1}" = "clean" ]; then
	make distclean 2>/dev/null || true
	for f in missing install-sh mkinstalldirs config.guess config.sub \
	depcomp INSTALL COPYING ltmain.sh; do
		test -h "$f" && rm -f -v "$f"
	done
	rm -f -v *~ configure config.h.in config.h stamp-h.in stamp-h1* \
		config.cache config.log config.status aclocal.m4 libtool
	rm -r -f -v autom4te.cache
	rm -f -v *.lsm
else
	aclocal
	autoheader
	automake --add-missing
	autoreconf
fi