File: autogen.sh

package info (click to toggle)
cpluff 0.2.0%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,996 kB
  • sloc: ansic: 9,055; sh: 4,734; cpp: 731; makefile: 382; xml: 244; sed: 16
file content (22 lines) | stat: -rwxr-xr-x 490 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh

# Copyright 2007 Johannes Lehtinen
# This shell script is free software; Johannes Lehtinen gives
# unlimited permission to copy, distribute and modify it.

set -e

# Check directory
basedir="`dirname "$0"`"
if ! test -f "$basedir"/cpfile/Makefile.am; then
    echo 'Run autogen.sh in the examples source directory.' 1>&2
    exit 1
fi

# Generate files in examples directory
cd "$basedir"
test -d auxliary || mkdir auxliary
libtoolize --automake -f
aclocal
autoconf
automake -a