File: autogen.sh

package info (click to toggle)
ptunnel-ng 1.32-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 952 kB
  • sloc: sh: 4,329; ansic: 3,021; python: 167; makefile: 50
file content (12 lines) | stat: -rwxr-xr-x 191 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -x

if ! autoreconf -fi; then
    aclocal
    autoheader
    automake --force-missing --add-missing
    autoconf
fi

$(dirname $0)/configure $@ && make -j${BUILDJOBS:-4} all