File: bootstrap

package info (click to toggle)
k3d 0.4.3.0-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 51,716 kB
  • ctags: 81,610
  • sloc: cpp: 283,698; ansic: 64,095; xml: 61,533; sh: 9,026; makefile: 5,282; python: 431; perl: 308; awk: 130
file content (44 lines) | stat: -rwxr-xr-x 1,009 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh

cat << EOF

Bootstrapping K-3D ...

This script uses aclocal, automake, autoconf, and libtool
to generate configuration and makefiles for building
the project.  It is intended for use by developers who
obtain the source via CVS.  If you obtained K-3D via
source tarball you shouldn't need to run this script,
since the generated files are normally included in a
tarball distribution.

EOF

libtoolize --force --automake --copy
aclocal
automake --add-missing --copy
autoconf

cat << EOF
Bootstrap complete ... next, run

	./configure

to set build options.  Note: by default, the build will
create binaries with debugging symbols (-g) and moderate
optimization (-O2) enabled.  This is default behavior for
autoconf, and can be overridden by specifying CFLAGS and
CXXFLAGS when you run configure, e.g.

	CFLAGS="-O3" CXXFLAGS="-O3" ./configure

for a build with more aggressive optimization and
no debugging symbols. Run

	./configure --help

for details on these and other available options.

EOF