File: bootstrap

package info (click to toggle)
libtextwrap 0.1-17
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,456 kB
  • sloc: sh: 8,186; ansic: 332; perl: 38; makefile: 16
file content (22 lines) | stat: -rwxr-xr-x 312 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -x
case "$1" in
	clean)
		rm -rf Makefile.in aclocal.m4 autom4te.cache config \
			config.h.in configure stamp-h.in
	;;

	*)
		mkdir config
		aclocal -I config
		autoheader
		automake --foreign --add-missing --copy
		libtoolize --copy
		autoconf

		# is this OK?
		rm -rf autom4te.cache
	;;
esac