File: run_autotools

package info (click to toggle)
nload 0.7.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 852 kB
  • ctags: 479
  • sloc: sh: 3,809; cpp: 3,188; makefile: 49
file content (11 lines) | stat: -rwxr-xr-x 237 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

echo "Running aclocal..."
aclocal || exit 1
echo "Running autoheader..."
autoheader || exit 1
echo "Running autoconf..."
autoconf || exit 1
echo "Running automake..."
automake --add-missing --copy || exit 1
echo "Finished."