[go: up one dir, main page]

File: autogen.sh

package info (click to toggle)
trigger-rally 0.6.1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,940 kB
  • ctags: 11,011
  • sloc: cpp: 28,421; sh: 2,622; makefile: 75
file content (43 lines) | stat: -rwxr-xr-x 996 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#! /bin/sh

# Correct working directory?
if test ! -f configure.ac ; then
  echo "*** Please invoke this script from directory containing configure.ac."
  exit 1
fi

# construct aclocal.m4 from macro files
MACRODIR=mk/autoconf
aclocal -I $MACRODIR

# generate a Jamconfig.in
autoconf --trace=AC_SUBST | \
  sed -e 's/configure.ac:[0-9]*:AC_SUBST:\([^:]*\).*/\1 ?= "@\1@" ;/g' \
  > Jamconfig.in

# seems autoconf --trace misses some things :-/
echo 'INSTALL ?= "@INSTALL@" ;' >> Jamconfig.in
echo 'JAMCONFIG_READ = yes ;' >> Jamconfig.in
echo 'HAVE_GLEW = "@HAVE_GLEW@" ;' >> Jamconfig.in

# autoheader/config.h not used by trigger yet
autoheader

autoconf

# copy file $1 to directory $2
copy_file() {
  if [ ! -r "$1" ]; then
    echo "$1 not readable/presenkt."
  else
    if [ ! -d "$2" ]; then
      echo "$2: no directory."
    else
      echo "$1 --> $2"
      cp "$1" "$2"
    fi
  fi
}

copy_file /usr/share/misc/config.sub mk/autoconf
copy_file /usr/share/misc/config.guess mk/autoconf