File: bootstrap.sh

package info (click to toggle)
xastir 2.2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,860 kB
  • sloc: ansic: 126,160; perl: 7,792; makefile: 448; sh: 228; sql: 102
file content (29 lines) | stat: -rwxr-xr-x 513 bytes parent folder | download | duplicates (3)
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-2026 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."