view autogen.sh @ 15260:789c8c3c9af5

Export more symbols from liboctinterp. * libinterp/interpfcn/symtab.h (symbol_table::symbol_record::symbol_record_rep::active_content): Decorate with OCTINTERP_API. * libinterp/interpfcn/defaults.in.h (Voctave_home, Vbin_dir, Vinfo_dir, Vdata_dir, Vlibexec_dir, Varch_lib_dir, Vlocal_arch_lib_dir, Vlocal_ver_arch_lib_dir, Vlocal_ver_oct_file_dir, Vlocal_api_oct_file_dir, Vlocal_oct_file_dir, Vlocal_ver_fcn_file_dir, Vlocal_api_fcn_file_dir, Vlocal_fcn_file_dir, Voct_etc_dir, Voct_file_dir, Vfcn_file_dir, Vimage_dir, VEDITOR, Vlocal_site_defaults_file, Vsite_defaults_file, subst_octave_fome, install_defaults, set_exec_path, set_image_path): Likewise.
author Michael Goffioul <michael.goffioul@gmail.com>
date Thu, 30 Aug 2012 15:53:01 +0100
parents 2fc554ffbc28
children 648dabbb4c6b
line wrap: on
line source

#! /bin/sh
# autogen.sh
# Run this to generate all the initial makefiles, etc.

set -e

## Use --foreign since we auto-generate the AUTHORS file and the default
## --gnu strictness level doesn't like it if the AUTHORS file is missing.

AUTOMAKE="automake --foreign --warnings=no-portability"
export AUTOMAKE

## Check for files that automake --gnu would normally look for, except
## AUTHORS, which we autogenerate from the documentation files along with
## building the rest of Octave, and INSTALL, which is linked from
## gnulib/doc/INSTALL by the bootstrap script.

for f in NEWS README COPYING; do
  if ! test -f $f; then
    echo "required file $f is missing" 2>&1
    exit 1
  fi
done

echo "generating source lists for liboctave/Makefile..."

(cd liboctave; ./config-ops.sh)

echo "generating doc/interpreter/images.mk..."

(cd doc/interpreter; ./config-images.sh)

echo "generating libinterp/dldfcn/module.mk..."

(cd libinterp/dldfcn; ./config-module.sh)

echo "bootstrapping..."

build-aux/bootstrap "$@"

## G77 is obsolete, but it is still the first option in the autoconf Fortran
## macros.  We should avoid it, because mixing old versions of g77 with modern
## gcc and g++ causes trouble.  The following will make it harder (but not
## impossible) for users to make this mistake.
##
## FIXME -- we should really work to fix autoconf so that it prefers gfortran
## over g77 even when searching for a Fortran 77 compiler.

echo "replacing all occurrences of g77 with gfortran in configure script..."

sed 's/g77/gfortran/g' configure > configure.t
mv configure.t configure
chmod 755 configure