#!/bin/sh # # Copyright (c) 2005-2006 The ABINIT Group (Yann Pouillon) # All rights reserved. # # This file is part of the ABINIT software package. For license information, # please see the COPYING file in the top-level directory of the ABINIT source # distribution. # # Generate all necessary files echo -n " * Generating aclocal.m4..." aclocal -I config/m4 2> /dev/null echo "done." echo -n " * Generating config.h.in..." autoheader echo "done." echo -n " * Generating configure script..." autoconf echo "done." echo " * Generating Makefile.in for each directory:" automake --add-missing --copy echo " * All done."