[go: up one dir, main page]

File: bootstrap

package info (click to toggle)
faad2 2.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,820 kB
  • sloc: ansic: 62,856; cpp: 1,324; makefile: 89; sh: 14
file content (17 lines) | stat: -rwxr-xr-x 299 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

case $OSTYPE in
	darwin*)
	LIBTOOLIZE=glibtoolize
	;;
	*)
	LIBTOOLIZE=libtoolize
	;;
esac

aclocal -I .                   && \
autoheader                     && \
$LIBTOOLIZE --automake && \
automake --add-missing && \
autoconf                       && \
echo "Ready to run ./configure"