File: autogen.sh

package info (click to toggle)
glpk-java 1.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,568 kB
  • sloc: sh: 3,609; java: 1,794; xml: 259; makefile: 160; ansic: 35
file content (14 lines) | stat: -rwxr-xr-x 268 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

test -f configure.ac || {
  echo "Please, run this script in the top level project directory."
  exit
}

libtoolize --copy
aclocal -I m4
autoconf
autoheader
automake --add-missing --copy

echo "For installation instructions, please, refer to file INSTALL."