File: autogen.sh

package info (click to toggle)
libgdsii 0.2%2Bds.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 896 kB
  • sloc: cpp: 1,622; makefile: 42; sh: 22
file content (18 lines) | stat: -rwxr-xr-x 722 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# Use this script to regenerate all of the auto* files, e.g. when
# you check out a fresh repository.  (Thereafter, as long as
# you configure with the --enable-maintainer-mode during development,
# the files are regenerated automatically as needed whenever you
# change configure.ac, Makefile.am, or similar.)

# automake requires a ChangeLog file to be GNU-ly correct; this will be
# overwritten later by the output of "git log"
touch ChangeLog

# paranoia: sometimes autoreconf doesn't get things right the first time
autoreconf --verbose --install --symlink --force
autoreconf --verbose --install --symlink --force
autoreconf --verbose --install --symlink --force

./configure --enable-maintainer-mode "$@"