File: autogen.sh

package info (click to toggle)
eclib 20160720-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,092 kB
  • ctags: 4,385
  • sloc: cpp: 46,234; makefile: 236; sh: 108
file content (17 lines) | stat: -rwxr-xr-x 285 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/sh

aclocal

# Support for Linux and Mac OS X
# libtoolize is given the name glibtoolize
# when installing GNU libtool via 
# Homebrew or MacPorts on Mac
if hash libtoolize 2>&-
then
    libtoolize --automake
else
    glibtoolize --automake
fi

automake --add-missing
autoconf