File: autogen.sh

package info (click to toggle)
lincity-ng 2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 51,888 kB
  • ctags: 3,589
  • sloc: cpp: 27,186; xml: 20,839; sh: 3,144; ansic: 631; makefile: 81
file content (22 lines) | stat: -rwxr-xr-x 529 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

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

aclocal -I mk/autoconf
autoheader

# generate Jamconfig.in
autoconf --trace=AC_SUBST \
  | sed -e 's/configure.ac:[0-9]*:AC_SUBST:\([^:]*\).*/\1 ?= "@\1@" ;/g' \
  > Jamconfig.in~
cat Jamconfig.in~ | sed -e 's/.*BACKSLASH.*//' > Jamconfig.in
rm Jamconfig.in~
echo 'INSTALL ?= "@INSTALL@" ;' >> Jamconfig.in
echo 'JAMCONFIG_READ = yes ;' >> Jamconfig.in

autoconf