File: autogen.sh

package info (click to toggle)
libmatio 1.5.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,648 kB
  • sloc: sh: 126,066; ansic: 22,606; makefile: 646; python: 215
file content (11 lines) | stat: -rwxr-xr-x 204 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh

bootstrap() {
  case `uname` in Darwin*) glibtoolize --copy ;;
                        *) libtoolize --copy ;; esac && \
  aclocal -I config && \
  automake -a -c && \
  autoconf
}

bootstrap