File: bootstrap.sh

package info (click to toggle)
xastir 2.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,284 kB
  • sloc: ansic: 119,926; perl: 7,810; sh: 1,309; makefile: 392; sql: 102
file content (29 lines) | stat: -rwxr-xr-x 512 bytes parent folder | download | duplicates (2)
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
#/bin/sh -e
#
#
# Copyright (C) 2000-2023 The Xastir Group
#
#
# This simple routine will run autostuff in the appropriate
# order to generate the needed configure/makefiles
#

echo "    5) Removing autom4te.cache directory..."
rm -rf autom4te.cache

echo "    4) Running aclocal..."
aclocal

echo "    3) Running autoheader..."
autoheader

echo "    2) Running autoconf..."
autoconf

# Cygwin needs these parameters to be separate.
echo "    1) Running automake..."
automake -a -c

echo "Bootstrap complete."