Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Test libex
[simgrid.git] / bootstrap
1 #!/bin/sh -e
2 # Run this to generate all the initial makefiles, etc.
3
4 amver=1.9
5
6 # AUTOCONF=
7 # AUTOHEADER=
8 # AUTOPOINT=
9 # LIBTOOLIZE=
10
11 ACLOCAL="aclocal-$amver -I acmacro" \
12 AUTOMAKE="automake-$amver" \
13   autoreconf -v -i -s || exit 1
14
15 echo
16 echo "And now, please launch ./configure"
17 echo "----------------------------------"
18
19 # What to do the day we declare optional modules using ACI:
20 #  if test -e aci.conf ; then
21 #   source aci.conf
22 #   pass the content of $configure_args to configure
23
24 echo 
25 echo "Most common flags:"
26 echo "  --enable-maintainer-mode         mandatory if you are a maintainer"
27 echo "  --disable-compile-optimizations  useful if your gdb gets fooled"
28 echo
29
30 echo 
31 echo "If you want to compile for several archs from the same (nfs-mounted?) tree, do:"
32 echo "  mkdir your_arch; cd your_arch && ../configure --srcdir=.."
33
34 echo 
35 echo "(after configure, you'll naturally have to run \`make')"
36 echo 
37 echo