File: bootstrap

package info (click to toggle)
xmoto 0.2.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 9,448 kB
  • ctags: 8,532
  • sloc: cpp: 39,422; sh: 4,034; ansic: 282; makefile: 189; sed: 16
file content (24 lines) | stat: -rw-r--r-- 486 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

(automake --version) < /dev/null > /dev/null 2>&1 || {
	echo;
	echo "You must have automake installed to compile xmoto";
	echo;
	exit;
}

(autoconf --version) < /dev/null > /dev/null 2>&1 || {
	echo;
	echo "You must have autoconf installed to compile xmoto";
	echo;
	exit;
}

echo "Generating configuration files for xmoto, please wait..."
echo;

aclocal -I config $ACLOCAL_FLAGS\
&& automake --gnu --add-missing --copy \
&& autoconf \
&& echo "You can now run ./configure"