File: autogen.sh

package info (click to toggle)
eclib 20250627-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,980 kB
  • sloc: cpp: 46,017; makefile: 273; sh: 127
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