File: autogen.sh

package info (click to toggle)
squidguard 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,348 kB
  • sloc: perl: 2,575; ansic: 1,789; makefile: 414; sh: 330; lex: 193
file content (37 lines) | stat: -rwxr-xr-x 653 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/sh
#
# autogen.sh for source packages to create 'configure'

echo

if [ "$1" = "clean" ]; then

  echo "autoclean: remove all generated files ..."

  [ -f Makefile ] && make distclean
  rm -f configure install-sh config.log src/config.h*
  sleep 0.2

  echo "autoclean: finished."

else

  if [ -f configure.ac ]; then

      autoreconf --verbose --force
      automake --no-force --add-missing --copy 2>/dev/null

      [ -d autom4te.cache ] && rm -rf autom4te.cache
      [ -d .git ] && rm -rf .git

      echo "autoreconf: finished - now you can start ./configure"

  else
    echo "file configure.ac not found - abort!"
  fi

fi

echo

# EOF