File: bootstrap

package info (click to toggle)
owfs 3.2p4%2Bdfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,220 kB
  • sloc: ansic: 66,806; pascal: 5,957; tcl: 2,688; makefile: 1,348; python: 1,114; sh: 695; cs: 623; php: 600; perl: 587; java: 404; ruby: 289; cpp: 105; asm: 102; xml: 53
file content (12 lines) | stat: -rwxr-xr-x 281 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

# OSX uses BSD libtool by default -- we want GNU
case $(uname) in
	Darwin)
		LZ=glibtoolize ;;
	*)
		LZ=libtoolize ;;
esac

rm -rf *cache
$LZ -f -c -i && aclocal && autoheader && autoconf && automake -a -c --foreign && echo "Run './configure' and 'make' to build owfs"