automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Help - I'm going mad!!! /bin/bash: --gnu: command not found


From: Dr. David Kirkby
Subject: Help - I'm going mad!!! /bin/bash: --gnu: command not found
Date: Tue, 08 Apr 2003 00:01:20 -0000

Can anyone throw any light on the situation below? I'm just about fed up
trying all manner of things to build a configure.ac that generates no
error messages from autoreconf, configure or make. 

'autoreconf' runs without any errors and generates a configure script.
The configure script created by autoreconf seems okay and runs properly.
However, after running GNU make, I get the error message:

make[1]: Entering directory `/export/home/davek/atlc/src'
cd .. && \
   --gnu  src/Makefile
/bin/bash: --gnu: command not found


/bin/bash does exist by the way, but seems unwillig to accept the --gnu
option. 

What is happening? I have GNU make 3.79.1, autoconf 2.57, automake 1.7
and m4 version 1.4. 

I've put the top level Makefile. am, the configure.ac, config.log and
Makefile below, all separated by rots of
***'******************************'s. 

All the m4 macros are in the top level directory, so I have
"ACLOCAL_AMFLAGS = -I ." in Makefile.am

Any ideas gratefully received. I'm getting rather fed up with it all. I
seem to be chasing my tail. 

# This is Makefile.am, which is proceed by automake
AUTOMAKE_OPTIONS = gnits
ACLOCAL_AMFLAGS = -I .

SUBDIRS =  . src man docs examples tools tests 

EXTRA_DIST = \
README \
README.checks \
README.cvs \
README.help \
README.mpi \
README.solaris \
README.support \
README.threads \
README.windows \
BUGS \
stoptests \
acx_pthread.m4 \
gtk.m4 \
gsl.m4 \
TODO

CLEANFILES = examplestest-coupler2.bmp.txt
DISTCLEANFILES = examplestest-coupler2.bmp.txt

**********************************************
**********************************************
**********************************************
********************************************8*

% cat configure.ac
# Process this file with autoconf to produce a configure script.

# Order of itmes is suggested in the autoconf documentation to be that
# below, to be as below. Let's try to stick to it.

# checks for programs
# checks for libraries
# checks for header files
# checks for typedefs
# checks for structures
# checks for compiler characteristics
# checks for library functions
# checks for system services
# AC_OUTPUT([file...])

AC_INIT([atlc], [4.2.12], address@hidden)
AM_INIT_AUTOMAKE
AC_PREREQ([2.57])
ACLOCAL_AMFLAGS = -I .

# Checks for programs.
AC_PROG_CXX
AC_ISC_POSIX

# AC_OUTPUT_COMMANDS([exit])

# Checks for libraries.
AC_CHECK_LIB(m,main)
AC_CHECK_LIB(c,memalign, AC_DEFINE(HAVE_MEMALIGN))


# check for optimised math library on SPARC
# AC_CHECK_LIB(mopt,main)
# check for the optimised
# AC_CHECK_LIB(copt,main)

# Checks for header files.

# AC_STDC_HEADERS
# AC_HAVE_HEADERS(stdio.h math.h errno.h stdlib.h string.h)
AC_CHECK_HEADERS([stdio.h math.h malloc.h stdlib.h string.h strings.h])

# Checks for typedefs
AC_HEADER_STDBOOL
AC_C_CONST
AC_TYPE_SIZE_T

# checks for structures (none need to be tested)

# checks for compiler characteristics
AC_C_BIGENDIAN
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(size_t)

# checks for library functions
AC_FUNC_MALLOC
AC_FUNC_MEMCMP
AC_FUNC_STRTOD
AC_CHECK_FUNCS([memset strchr strtol])
#AC_CHECK_FUNCS([memset pow sqrt strchr strtol])

# checks for system services

# Check if the user wants a GUI. If so makes sure GTK and wxWindows are
around.
# The macro is in the file gtk.m4, so it must be read it here. 
# m4_sinclude(gtk.m4)
AC_ARG_WITH(gui, AC_HELP_STRING([--with-gui=[no]],[Add a GUI (needs GTK
>= 1.2.7 installed) but the GUI does not work!! ]))
if test "x$with_gui" = "xyes"; then
        AC_PATH_GTK(1.2.7, GTK127=1)
        if test "$GTK127" != 1; then
            AC_MSG_ERROR([
                Please check that gtk-config is in path, the directory
                where GTK+ libraries are installed (returned by
                'gtk-config --libs' command) is in LD_LIBRARY_PATH or
                equivalent variable and GTK+ is version 1.2.7 or above.
            ])
        fi
        AC_CHECK_PROG(WXWINDOWS,wx-config, 1, 0)   
        if test "$WXWINDOWS" != 1; then
            AC_MSG_ERROR([
               wxWindows must be installed to use the GUI version of
atlc
        ])
        fi
        AC_SUBST(EXTRA_WXWINDOWS_LIBS,`wx-config --libs`)
        AC_SUBST(EXTRA_WXWINDOWS_CFLAGS,`wx-config --cflags`)
        AC_SUBST(GUI_DIRECTORY,gui)
fi
#AC_LANG_C
#m4_sinclude(gsl.m4)
AM_PATH_GSL([1.0])
LIBS="$GSL_LIBS $LIBS"
CFLAGS="$GSL_CFLAGS $CFLAGS"

#- some self-tests will fail if gsl library is not available.
#ail]
# AC_ARG_WITH(gsl=yes,[  --without-gsl           disable use of gsl
library (by default it's enabled)])
# if test "x$with_gsl" = "xno"; then
# AC_MSG_WARN([Use of the gsl library has been disabled - some
self-tests will fail])
# else
# AC_CHECK_LIB(m,main)
# AC_CHECK_LIB(gslcblas,main)
# AC_CHECK_LIB(gsl,main,,AC_MSG_WARN([To get full functionality you
should link atlc with the GNU Scientific Library (gsl)
# available at http://sources.redhat.com/gsl. Some self-tests will fail
without gsl.]))
# fi  



# Multi-Processor Support
# m4_sinclude(acx_pthread.m4)
AC_ARG_WITH(threads, 
[  --with-threads          support thread-based parallel computation -
this 
                          needs a POSIX thread library (pthreads or
similar) 
                          installed])

if test "x$with_threads" = "xyes"; then
AC_CHECK_LIB(thread, thr_setconcurrency,
[AC_DEFINE(HAVE_THR_SETCONCURRENCY)])
ACX_PTHREAD([AC_DEFINE(ENABLE_POSIX_THREADS)])
LIBS="$PTHREAD_LIBS $LIBS"
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
CC="$PTHREAD_CC"
fi

# MPI and MPE Support
AC_ARG_WITH(mpi,
AC_HELP_STRING([--with-mpi=[mpi_install_prefix]],[support MPI-based
parallel computation (needs MPICH installed)]))
AC_ARG_WITH(mpe,
AC_HELP_STRING([--with-mpe=[mpi_install_prefix]],[implies --with-mpi and
additionally links in MPE logging support]))

if test "x$with_mpi" != "x" \
|| test "x$with_mpe" != "x"; then

  if test "x$with_mp" = "xyes"; then
    AC_MSG_ERROR([it does not make sense to use --with-mp with
--with-mpi or --with-mpe])
  fi  
  AC_HAVE_HEADERS(mpi.h)
  AC_DEFINE(ENABLE_MPI)
  AC_CHECK_LIB(socket, getsockopt)
  AC_CHECK_LIB(nsl, xdr_void)
  AC_CHECK_LIB(rt, sched_yield)
  if test "x$with_mpe" != "x"; then 
    if test "x$with_mpe" = "xyes"; then
        path_to_mpe=/usr/local
    else
        path_to_mpe=$with_mpe
    fi
    CFLAGS="$CFLAGS -I$path_to_mpe/include -L$path_to_mpe/lib"
    AC_CHECK_LIB(pmpich,  MPI_Init , , [AC_MSG_ERROR([Could not link
test program with libpmpich.a])])
    AC_CHECK_LIB(mpe,  MPE_Init_log , , [AC_MSG_ERROR([Could not link
test program with libmpe.a])])
    AC_CHECK_LIB(lmpe,  MPE_Init_log , ,[AC_MSG_ERROR([Could not link
test program with liblmpe.a])] , -lmpe)
  else
    if test "x$with_mpi" = "xyes"; then
        path_to_mpi=/usr/local
    else
        path_to_mpi=$with_mpi
    fi
    CFLAGS="$CFLAGS -I$path_to_mpi/include -L$path_to_mpi/lib"
    AC_CHECK_LIB(mpich,  MPI_Init, , [AC_MSG_ERROR([Could not link test
program with libmpich.a])])
  fi
fi
AC_OUTPUT([\
Makefile                                        \
src/Makefile                                    \
src/non_gui/Makefile                            \
src/gui/Makefile                                \
man/Makefile                                    \
man/man1/Makefile                               \
examples/Makefile                               \
tools/Makefile                                  \
tools/src/Makefile                              \
tests/Makefile                                  \
docs/html-docs/Makefile                         \
docs/html-docs/jpgs/Makefile                    \
docs/qex-december-1996/Makefile                 \
docs/theory/Makefile                            \


**********************************************
**********************************************
**********************************************
********************************************8*
sparrow /export/home/davek/atlc % cat config.log
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by atlc configure 4.2.12, which was
generated by GNU Autoconf 2.57.  Invocation command line was

  $ configure 

## --------- ##
## Platform. ##
## --------- ##

hostname = sparrow
uname -m = sun4u
uname -r = 5.9
uname -s = SunOS
uname -v = Generic_112233-03

/usr/bin/uname -p = sparc
/bin/uname -X     = System = SunOS
Node = sparrow
Release = 5.9
KernelID = Generic_112233-03
Machine = sun4u
BusType = <unknown>
Serial = <unknown>
Users = <unknown>
OEM# = 0
Origin# = 1
NumCPU = 4

/bin/arch              = sun4
/usr/bin/arch -k       = sun4u
/usr/convex/getsysinfo = unknown
hostinfo               = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: .
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /usr/etc
PATH: /usr/openwin/bin
PATH: /usr/openwin/bin/xview
PATH: /usr/platform/SUNW,Ultra-60/sbin
PATH: /usr/local/sbin
PATH: /usr/ccs/bin
PATH: /opt/SUNWspro/bin
PATH: /usr/ucb


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1349: checking for a BSD-compatible install
configure:1403: result: /usr/local/bin/install -c
configure:1414: checking whether build environment is sane
configure:1457: result: yes
configure:1490: checking for gawk
configure:1506: found /usr/local/bin/gawk
configure:1516: result: gawk
configure:1526: checking whether make sets $(MAKE)
configure:1546: result: yes
configure:1757: checking for g++
configure:1773: found /usr/local/bin/g++
configure:1783: result: g++
configure:1799: checking for C++ compiler version
configure:1802: g++ --version </dev/null >&5
g++ (GCC) 3.2.2
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is
NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.

configure:1805: $? = 0
configure:1807: g++ -v </dev/null >&5
Reading specs from
/usr/local/bin/../lib/gcc-lib/sparc-sun-solaris2.9/3.2.2/specs
Configured with: ../gcc-3.2.2-patched-for-bounds-checking/configure
--prefix=/usr/local/stow/gcc-3.2.2-patched-for-bounds-checking
--srcdir=/usr/local/src/gcc-3.2.2-patched-for-bounds-checking
Thread model: posix
gcc version 3.2.2
configure:1810: $? = 0
configure:1812: g++ -V </dev/null >&5
g++: argument to `-V' missing

configure:1815: $? = 1
configure:1839: checking for C++ compiler default output
configure:1842: g++    conftest.cc  >&5
configure:1845: $? = 0
configure:1891: result: a.out
configure:1896: checking whether the C++ compiler works
configure:1902: ./a.out
configure:1905: $? = 0
configure:1922: result: yes
configure:1929: checking whether we are cross compiling
configure:1931: result: no
configure:1934: checking for suffix of executables
configure:1936: g++ -o conftest    conftest.cc  >&5
configure:1939: $? = 0
configure:1964: result: 
configure:1970: checking for suffix of object files
configure:1992: g++ -c   conftest.cc >&5
configure:1995: $? = 0
configure:2017: result: o
configure:2021: checking whether we are using the GNU C++ compiler
configure:2046: g++ -c   conftest.cc >&5
configure:2049: $? = 0
configure:2052: test -s conftest.o
configure:2055: $? = 0
configure:2068: result: yes
configure:2074: checking whether g++ accepts -g
configure:2096: g++ -c -g  conftest.cc >&5
configure:2099: $? = 0
configure:2102: test -s conftest.o
configure:2105: $? = 0
configure:2116: result: yes
configure:2160: g++ -c -g -O2  conftest.cc >&5
configure:2163: $? = 0
configure:2166: test -s conftest.o
configure:2169: $? = 0
configure:2196: g++ -c -g -O2  conftest.cc >&5
configure: In function `int main()':
configure:2193: `exit' undeclared (first use this function)
configure:2193: (Each undeclared identifier is reported only once for
each 
   function it appears in.)
configure:2199: $? = 1
configure: failed program was:
| #line 2179 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "atlc"
| #define PACKAGE_TARNAME "atlc"
| #define PACKAGE_VERSION "4.2.12"
| #define PACKAGE_STRING "atlc 4.2.12"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "atlc"
| #define VERSION "4.2.12"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:2160: g++ -c -g -O2  conftest.cc >&5
configure:2163: $? = 0
configure:2166: test -s conftest.o
configure:2169: $? = 0
configure:2196: g++ -c -g -O2  conftest.cc >&5
configure:2199: $? = 0
configure:2202: test -s conftest.o
configure:2205: $? = 0
configure:2247: checking for style of include used by make
configure:2275: result: GNU
configure:2303: checking dependency style of g++
configure:2365: result: gcc3
configure:2428: checking for gcc
configure:2444: found /usr/local/bin/gcc
configure:2454: result: gcc
configure:2698: checking for C compiler version
configure:2701: gcc --version </dev/null >&5
gcc (GCC) 3.2.2
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is
NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.

configure:2704: $? = 0
configure:2706: gcc -v </dev/null >&5
Reading specs from
/usr/local/bin/../lib/gcc-lib/sparc-sun-solaris2.9/3.2.2/specs
Configured with: ../gcc-3.2.2-patched-for-bounds-checking/configure
--prefix=/usr/local/stow/gcc-3.2.2-patched-for-bounds-checking
--srcdir=/usr/local/src/gcc-3.2.2-patched-for-bounds-checking
Thread model: posix
gcc version 3.2.2
configure:2709: $? = 0
configure:2711: gcc -V </dev/null >&5
gcc: argument to `-V' is missing
configure:2714: $? = 1
configure:2717: checking whether we are using the GNU C compiler
configure:2742: gcc -c   conftest.c >&5
configure:2745: $? = 0
configure:2748: test -s conftest.o
configure:2751: $? = 0
configure:2764: result: yes
configure:2770: checking whether gcc accepts -g
configure:2792: gcc -c -g  conftest.c >&5
configure:2795: $? = 0
configure:2798: test -s conftest.o
configure:2801: $? = 0
configure:2812: result: yes
configure:2829: checking for gcc option to accept ANSI C
configure:2890: gcc  -c -g -O2  conftest.c >&5
configure:2893: $? = 0
configure:2896: test -s conftest.o
configure:2899: $? = 0
configure:2917: result: none needed
configure:2935: gcc -c -g -O2  conftest.c >&5
conftest.c:2: parse error before "me"
configure:2938: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:3049: checking dependency style of gcc
configure:3111: result: gcc3
configure:3129: checking for library containing strerror
configure:3160: gcc -o conftest -g -O2   conftest.c  >&5
configure:3163: $? = 0
configure:3166: test -s conftest
configure:3169: $? = 0
configure:3228: result: none required
configure:3240: checking for main in -lm
configure:3265: gcc -o conftest -g -O2   conftest.c -lm   >&5
configure:3268: $? = 0
configure:3271: test -s conftest
configure:3274: $? = 0
configure:3286: result: yes
configure:3297: checking for memalign in -lc
configure:3328: gcc -o conftest -g -O2   conftest.c -lc  -lm  >&5
configure:3331: $? = 0
configure:3334: test -s conftest
configure:3337: $? = 0
configure:3349: result: yes
configure:3374: checking how to run the C preprocessor
configure:3410: gcc -E  conftest.c
configure:3416: $? = 0
configure:3448: gcc -E  conftest.c
configure:3454:28: ac_nonexistent.h: No such file or directory
configure:3454: $? = 1
configure: failed program was:
| #line 3439 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "atlc"
| #define PACKAGE_TARNAME "atlc"
| #define PACKAGE_VERSION "4.2.12"
| #define PACKAGE_STRING "atlc 4.2.12"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "atlc"
| #define VERSION "4.2.12"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_LIBM 1
| #define HAVE_MEMALIGN 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3492: result: gcc -E
configure:3517: gcc -E  conftest.c
configure:3523: $? = 0
configure:3555: gcc -E  conftest.c
configure:3561:28: ac_nonexistent.h: No such file or directory
configure:3561: $? = 1
configure: failed program was:
| #line 3546 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "atlc"
| #define PACKAGE_TARNAME "atlc"
| #define PACKAGE_VERSION "4.2.12"
| #define PACKAGE_STRING "atlc 4.2.12"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "atlc"
| #define VERSION "4.2.12"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_LIBM 1
| #define HAVE_MEMALIGN 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3604: checking for egrep
configure:3614: result: egrep
configure:3619: checking for ANSI C header files
configure:3645: gcc -c -g -O2  conftest.c >&5
configure:3648: $? = 0
configure:3651: test -s conftest.o
configure:3654: $? = 0
configure:3743: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:3746: $? = 0
configure:3748: ./conftest
configure:3751: $? = 0
configure:3766: result: yes
configure:3790: checking for sys/types.h
configure:3807: gcc -c -g -O2  conftest.c >&5
configure:3810: $? = 0
configure:3813: test -s conftest.o
configure:3816: $? = 0
configure:3827: result: yes
configure:3790: checking for sys/stat.h
configure:3807: gcc -c -g -O2  conftest.c >&5
configure:3810: $? = 0
configure:3813: test -s conftest.o
configure:3816: $? = 0
configure:3827: result: yes
configure:3790: checking for stdlib.h
configure:3807: gcc -c -g -O2  conftest.c >&5
configure:3810: $? = 0
configure:3813: test -s conftest.o
configure:3816: $? = 0
configure:3827: result: yes
configure:3790: checking for string.h
configure:3807: gcc -c -g -O2  conftest.c >&5
configure:3810: $? = 0
configure:3813: test -s conftest.o
configure:3816: $? = 0
configure:3827: result: yes
configure:3790: checking for memory.h
configure:3807: gcc -c -g -O2  conftest.c >&5
configure:3810: $? = 0
configure:3813: test -s conftest.o
configure:3816: $? = 0
configure:3827: result: yes
configure:3790: checking for strings.h
configure:3807: gcc -c -g -O2  conftest.c >&5
configure:3810: $? = 0
configure:3813: test -s conftest.o
configure:3816: $? = 0
configure:3827: result: yes
configure:3790: checking for inttypes.h
configure:3807: gcc -c -g -O2  conftest.c >&5
configure:3810: $? = 0
configure:3813: test -s conftest.o
configure:3816: $? = 0
configure:3827: result: yes
configure:3790: checking for stdint.h
configure:3807: gcc -c -g -O2  conftest.c >&5
configure:3853:20: stdint.h: No such file or directory
configure:3810: $? = 1
configure: failed program was:
| #line 3795 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "atlc"
| #define PACKAGE_TARNAME "atlc"
| #define PACKAGE_VERSION "4.2.12"
| #define PACKAGE_STRING "atlc 4.2.12"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "atlc"
| #define VERSION "4.2.12"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_LIBM 1
| #define HAVE_MEMALIGN 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| 
| #include <stdint.h>
configure:3827: result: no
configure:3790: checking for unistd.h
configure:3807: gcc -c -g -O2  conftest.c >&5
configure:3810: $? = 0
configure:3813: test -s conftest.o
configure:3816: $? = 0
configure:3827: result: yes
configure:3858: checking stdio.h usability
configure:3871: gcc -c -g -O2  conftest.c >&5
configure:3874: $? = 0
configure:3877: test -s conftest.o
configure:3880: $? = 0
configure:3890: result: yes
configure:3894: checking stdio.h presence
configure:3905: gcc -E  conftest.c
configure:3911: $? = 0
configure:3930: result: yes
configure:3966: checking for stdio.h
configure:3973: result: yes
configure:3858: checking math.h usability
configure:3871: gcc -c -g -O2  conftest.c >&5
configure:3874: $? = 0
configure:3877: test -s conftest.o
configure:3880: $? = 0
configure:3890: result: yes
configure:3894: checking math.h presence
configure:3905: gcc -E  conftest.c
configure:3911: $? = 0
configure:3930: result: yes
configure:3966: checking for math.h
configure:3973: result: yes
configure:3858: checking malloc.h usability
configure:3871: gcc -c -g -O2  conftest.c >&5
configure:3874: $? = 0
configure:3877: test -s conftest.o
configure:3880: $? = 0
configure:3890: result: yes
configure:3894: checking malloc.h presence
configure:3905: gcc -E  conftest.c
configure:3911: $? = 0
configure:3930: result: yes
configure:3966: checking for malloc.h
configure:3973: result: yes
configure:3849: checking for stdlib.h
configure:3854: result: yes
configure:3849: checking for string.h
configure:3854: result: yes
configure:3849: checking for strings.h
configure:3854: result: yes
configure:3988: checking for stdbool.h that conforms to C99
configure:4042: gcc -c -g -O2  conftest.c >&5
configure:4045: $? = 0
configure:4048: test -s conftest.o
configure:4051: $? = 0
configure:4062: result: yes
configure:4064: checking for _Bool
configure:4089: gcc -c -g -O2  conftest.c >&5
configure:4092: $? = 0
configure:4095: test -s conftest.o
configure:4098: $? = 0
configure:4109: result: yes
configure:4128: checking for an ANSI C-conforming const
configure:4196: gcc -c -g -O2  conftest.c >&5
configure:4199: $? = 0
configure:4202: test -s conftest.o
configure:4205: $? = 0
configure:4216: result: yes
configure:4226: checking for size_t
configure:4251: gcc -c -g -O2  conftest.c >&5
configure:4254: $? = 0
configure:4257: test -s conftest.o
configure:4260: $? = 0
configure:4271: result: yes
configure:4287: checking whether byte ordering is bigendian
configure:4315: gcc -c -g -O2  conftest.c >&5
configure: In function `main':
configure:4332: `bogus' undeclared (first use in this function)
configure:4332: (Each undeclared identifier is reported only once
configure:4332: for each function it appears in.)
configure:4332: parse error before "endian"
configure:4318: $? = 1
configure: failed program was:
| #line 4293 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "atlc"
| #define PACKAGE_TARNAME "atlc"
| #define PACKAGE_VERSION "4.2.12"
| #define PACKAGE_STRING "atlc 4.2.12"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "atlc"
| #define VERSION "4.2.12"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_LIBM 1
| #define HAVE_MEMALIGN 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDIO_H 1
| #define HAVE_MATH_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/param.h>
| 
| int
| main ()
| {
| #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
|  bogus endian macros
| #endif
| 
|   ;
|   return 0;
| }
configure:4448: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:4451: $? = 0
configure:4453: ./conftest
configure:4456: $? = 1
configure: program exited with status 1
configure: failed program was:
| #line 4427 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME "atlc"
| #define PACKAGE_TARNAME "atlc"
| #define PACKAGE_VERSION "4.2.12"
| #define PACKAGE_STRING "atlc 4.2.12"
| #define PACKAGE_BUGREPORT "address@hidden"
| #define PACKAGE "atlc"
| #define VERSION "4.2.12"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_LIBM 1
| #define HAVE_MEMALIGN 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_STDIO_H 1
| #define HAVE_MATH_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE__BOOL 1
| #define HAVE_STDBOOL_H 1
| /* end confdefs.h.  */
| int
| main ()
| {
|   /* Are we little or big endian?  From Harbison&Steele.  */
|   union
|   {
|     long l;
|     char c[sizeof (long)];
|   } u;
|   u.l = 1;
|   exit (u.c[sizeof (long) - 1] == 1);
| }
configure:4472: result: yes
configure:4491: checking for int
configure:4516: gcc -c -g -O2  conftest.c >&5
configure:4519: $? = 0
configure:4522: test -s conftest.o
configure:4525: $? = 0
configure:4536: result: yes
configure:4539: checking size of int
configure:4814: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:4817: $? = 0
configure:4819: ./conftest
configure:4822: $? = 0
configure:4845: result: 4
configure:4852: checking for long
configure:4877: gcc -c -g -O2  conftest.c >&5
configure:4880: $? = 0
configure:4883: test -s conftest.o
configure:4886: $? = 0
configure:4897: result: yes
configure:4900: checking size of long
configure:5175: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:5178: $? = 0
configure:5180: ./conftest
configure:5183: $? = 0
configure:5206: result: 4
configure:5213: checking for size_t
configure:5258: result: yes
configure:5261: checking size of size_t
configure:5536: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:5539: $? = 0
configure:5541: ./conftest
configure:5544: $? = 0
configure:5567: result: 4
configure:5581: checking for stdlib.h
configure:5586: result: yes
configure:5718: checking for GNU libc compatible malloc
configure:5748: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:5751: $? = 0
configure:5753: ./conftest
configure:5756: $? = 0
configure:5770: result: yes
configure:5793: checking for working memcmp
configure:5842: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:5845: $? = 0
configure:5847: ./conftest
configure:5850: $? = 0
configure:5864: result: yes
configure:5868: checking for working strtod
configure:5912: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:5915: $? = 0
configure:5917: ./conftest
configure:5920: $? = 0
configure:5934: result: yes
configure:6083: checking for memset
configure:6133: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:6142: warning: conflicting types for built-in function
`memset'
configure:6136: $? = 0
configure:6139: test -s conftest
configure:6142: $? = 0
configure:6153: result: yes
configure:6083: checking for strchr
configure:6133: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:6143: warning: conflicting types for built-in function
`strchr'
configure:6136: $? = 0
configure:6139: test -s conftest
configure:6142: $? = 0
configure:6153: result: yes
configure:6083: checking for strtol
configure:6133: gcc -o conftest -g -O2   conftest.c -lm  >&5
configure:6136: $? = 0
configure:6139: test -s conftest
configure:6142: $? = 0
configure:6153: result: yes
configure:6433: checking for gsl-config
configure:6451: found /usr/local/bin/gsl-config
configure:6464: result: /usr/local/bin/gsl-config
configure:6472: checking for GSL - version >= 1.0
configure:6578: gcc -o conftest -g -O2
-I/usr/local/stow/gsl-1.3/include   conftest.c -lm 
-L/usr/local/stow/gsl-1.3/lib -lgsl -lgslcblas -lm >&5
configure:6581: $? = 0
configure:6583: ./conftest
configure:6586: $? = 0
configure:6604: result: yes
configure:8014: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by atlc config.status 4.2.12, which was
generated by GNU Autoconf 2.57.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on sparrow

config.status:685: creating Makefile
config.status:685: creating src/Makefile
config.status:685: creating src/non_gui/Makefile
config.status:685: creating src/gui/Makefile
config.status:685: creating man/Makefile
config.status:685: creating man/man1/Makefile
config.status:685: creating examples/Makefile
config.status:685: creating tools/Makefile
config.status:685: creating tools/src/Makefile
config.status:685: creating tests/Makefile
config.status:685: creating docs/html-docs/Makefile
config.status:685: creating docs/html-docs/jpgs/Makefile
config.status:685: creating docs/qex-december-1996/Makefile
config.status:685: creating docs/theory/Makefile
config.status:685: creating docs/Makefile
config.status:810: executing depfiles commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_c_bigendian=yes
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_memcmp_working=yes
ac_cv_func_memset=yes
ac_cv_func_strchr=yes
ac_cv_func_strtod=yes
ac_cv_func_strtol=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_malloc_h=yes
ac_cv_header_math_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdbool_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=no
ac_cv_header_stdio_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_lib_c_memalign=yes
ac_cv_lib_m_main=yes
ac_cv_objext=o
ac_cv_path_GSL_CONFIG=/usr/local/bin/gsl-config
ac_cv_path_install=$'/usr/local/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP=$'gcc -E'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=yes
ac_cv_prog_egrep=egrep
ac_cv_prog_make_make_set=yes
ac_cv_search_strerror=$'none required'
ac_cv_sizeof_int=4
ac_cv_sizeof_long=4
ac_cv_sizeof_size_t=4
ac_cv_type__Bool=yes
ac_cv_type_int=yes
ac_cv_type_long=yes
ac_cv_type_size_t=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /export/home/davek/atlc/missing --run aclocal-1.7'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /export/home/davek/atlc/missing --run tar'
AUTOCONF='${SHELL} /export/home/davek/atlc/missing --run autoconf'
AUTOHEADER='${SHELL} /export/home/davek/atlc/missing --run autoheader'
AUTOMAKE='${SHELL} /export/home/davek/atlc/missing --run automake-1.7'
AWK='gawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-I/usr/local/stow/gsl-1.3/include -g -O2'
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DEFS='-DPACKAGE_NAME=\"atlc\" -DPACKAGE_TARNAME=\"atlc\"
-DPACKAGE_VERSION=\"4.2.12\" -DPACKAGE_STRING=\"atlc\ 4.2.12\"
-DPACKAGE_BUGREPORT=\"address@hidden" -DPACKAGE=\"atlc\"
-DVERSION=\"4.2.12\" -DHAVE_LIBM=1 -DHAVE_MEMALIGN=1 -DSTDC_HEADERS=1
-DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1
-DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1
-DHAVE_INTTYPES_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STDIO_H=1 -DHAVE_MATH_H=1
-DHAVE_MALLOC_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_STRINGS_H=1
-DHAVE__BOOL=1 -DHAVE_STDBOOL_H=1 -DWORDS_BIGENDIAN=1 -DSIZEOF_INT=4
-DSIZEOF_LONG=4 -DSIZEOF_SIZE_T=4 -DHAVE_STDLIB_H=1 -DHAVE_MALLOC=1
-DHAVE_MEMSET=1 -DHAVE_STRCHR=1 -DHAVE_STRTOL=1 '
DEPDIR='.deps'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='egrep'
EXEEXT=''
EXTRA_WXWINDOWS_CFLAGS=''
EXTRA_WXWINDOWS_LIBS=''
GSL_CFLAGS='-I/usr/local/stow/gsl-1.3/include'
GSL_CONFIG='/usr/local/bin/gsl-config'
GSL_LIBS='-L/usr/local/stow/gsl-1.3/lib -lgsl -lgslcblas -lm'
GTK_CFLAGS=''
GTK_CONFIG=''
GTK_LIBS=''
GUI_DIRECTORY=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
LDFLAGS=''
LIBOBJS=''
LIBS='-L/usr/local/stow/gsl-1.3/lib -lgsl -lgslcblas -lm -lm '
LTLIBOBJS=''
MAKEINFO='${SHELL} /export/home/davek/atlc/missing --run makeinfo'
OBJEXT='o'
PACKAGE='atlc'
PACKAGE_BUGREPORT='address@hidden'
PACKAGE_NAME='atlc'
PACKAGE_STRING='atlc 4.2.12'
PACKAGE_TARNAME='atlc'
PACKAGE_VERSION='4.2.12'
PATH_SEPARATOR=':'
POW_LIB=''
PTHREAD_CC=''
PTHREAD_CFLAGS=''
PTHREAD_LIBS=''
SET_MAKE=''
SHELL='/bin/bash'
STRIP=''
VERSION='4.2.12'
WXWINDOWS=''
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_STRIP=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__quote=''
bindir='${exec_prefix}/bin'
build=''
build_alias=''
build_cpu=''
build_os=''
build_vendor=''
datadir='${prefix}/share'
exec_prefix='${prefix}'
host=''
host_alias=''
host_cpu=''
host_os=''
host_vendor=''
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/export/home/davek/atlc/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
prefix='/usr/local'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define HAVE_INTTYPES_H 1
#define HAVE_LIBM 1
#define HAVE_MALLOC 1
#define HAVE_MALLOC_H 1
#define HAVE_MATH_H 1
#define HAVE_MEMALIGN 1
#define HAVE_MEMORY_H 1
#define HAVE_MEMSET 1
#define HAVE_STDBOOL_H 1
#define HAVE_STDIO_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRCHR 1
#define HAVE_STRINGS_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRING_H 1
#define HAVE_STRTOL 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_UNISTD_H 1
#define HAVE__BOOL 1
#define PACKAGE "atlc"
#define PACKAGE_BUGREPORT "address@hidden"
#define PACKAGE_NAME "atlc"
#define PACKAGE_STRING "atlc 4.2.12"
#define PACKAGE_TARNAME "atlc"
#define PACKAGE_VERSION "4.2.12"
#define SIZEOF_INT 4
#define SIZEOF_LONG 4
#define SIZEOF_SIZE_T 4
#define STDC_HEADERS 1
#define VERSION "4.2.12"
#define WORDS_BIGENDIAN 1
#endif
#ifdef __cplusplus
#include <stdlib.h>

configure: exit 0
sparrow /export/home/davek/atlc % 


**********************************************
**********************************************
**********************************************
**********************************************





sparrow /export/home/davek/atlc % cat Makefile
# Makefile.in generated by automake 1.7 from Makefile.am.
# Makefile.  Generated from Makefile.in by configure.

# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.



srcdir = .
top_srcdir = .

pkgdatadir = $(datadir)/atlc
pkglibdir = $(libdir)/atlc
pkgincludedir = $(includedir)/atlc
top_builddir = .

am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = /usr/local/bin/install -c
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
host_triplet = 
ACLOCAL = ${SHELL} /export/home/davek/atlc/missing --run aclocal-1.7
AMDEP_FALSE = #
AMDEP_TRUE = 
AMTAR = ${SHELL} /export/home/davek/atlc/missing --run tar
AUTOCONF = ${SHELL} /export/home/davek/atlc/missing --run autoconf
AUTOHEADER = ${SHELL} /export/home/davek/atlc/missing --run autoheader
AUTOMAKE = ${SHELL} /export/home/davek/atlc/missing --run automake-1.7
AWK = gawk
CC = gcc
CCDEPMODE = depmode=gcc3
CFLAGS = -I/usr/local/stow/gsl-1.3/include -g -O2
CPP = gcc -E
CPPFLAGS = 
CXX = g++
CXXDEPMODE = depmode=gcc3
CXXFLAGS = -g -O2
CYGPATH_W = echo
DEFS = -DPACKAGE_NAME=\"atlc\" -DPACKAGE_TARNAME=\"atlc\"
-DPACKAGE_VERSION=\"4.2.12\" -DPACKAGE_STRING=\"atlc\ 4.2.12\"
-DPACKAGE_BUGREPORT=\"address@hidden" -DPACKAGE=\"atlc\"
-DVERSION=\"4.2.12\" -DHAVE_LIBM=1 -DHAVE_MEMALIGN=1 -DSTDC_HEADERS=1
-DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1
-DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1
-DHAVE_INTTYPES_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STDIO_H=1 -DHAVE_MATH_H=1
-DHAVE_MALLOC_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_STRINGS_H=1
-DHAVE__BOOL=1 -DHAVE_STDBOOL_H=1 -DWORDS_BIGENDIAN=1 -DSIZEOF_INT=4
-DSIZEOF_LONG=4 -DSIZEOF_SIZE_T=4 -DHAVE_STDLIB_H=1 -DHAVE_MALLOC=1
-DHAVE_MEMSET=1 -DHAVE_STRCHR=1 -DHAVE_STRTOL=1 
DEPDIR = .deps
ECHO_C = 
ECHO_N = -n
ECHO_T = 
EGREP = egrep
EXEEXT = 
EXTRA_WXWINDOWS_CFLAGS = 
EXTRA_WXWINDOWS_LIBS = 
GSL_CFLAGS = -I/usr/local/stow/gsl-1.3/include
GSL_CONFIG = /usr/local/bin/gsl-config
GSL_LIBS = -L/usr/local/stow/gsl-1.3/lib -lgsl -lgslcblas -lm
GTK_CFLAGS = 
GTK_CONFIG = 
GTK_LIBS = 
GUI_DIRECTORY = 
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_PROGRAM = ${INSTALL}
INSTALL_SCRIPT = ${INSTALL}
INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
LDFLAGS = 
LIBOBJS = 
LIBS = -L/usr/local/stow/gsl-1.3/lib -lgsl -lgslcblas -lm -lm 
LTLIBOBJS = 
MAKEINFO = ${SHELL} /export/home/davek/atlc/missing --run makeinfo
OBJEXT = o
PACKAGE = atlc
PACKAGE_BUGREPORT = address@hidden
PACKAGE_NAME = atlc
PACKAGE_STRING = atlc 4.2.12
PACKAGE_TARNAME = atlc
PACKAGE_VERSION = 4.2.12
PATH_SEPARATOR = :
POW_LIB = 
PTHREAD_CC = 
PTHREAD_CFLAGS = 
PTHREAD_LIBS = 
SET_MAKE = 
SHELL = /bin/bash
STRIP = 
VERSION = 4.2.12
WXWINDOWS = 
ac_ct_CC = gcc
ac_ct_CXX = g++
ac_ct_STRIP = 
am__fastdepCC_FALSE = #
am__fastdepCC_TRUE = 
am__fastdepCXX_FALSE = #
am__fastdepCXX_TRUE = 
am__include = include
am__quote = 
bindir = ${exec_prefix}/bin
build = 
build_alias = 
build_cpu = 
build_os = 
build_vendor = 
datadir = ${prefix}/share
exec_prefix = ${prefix}
host = 
host_alias = 
host_cpu = 
host_os = 
host_vendor = 
includedir = ${prefix}/include
infodir = ${prefix}/info
install_sh = /export/home/davek/atlc/install-sh
libdir = ${exec_prefix}/lib
libexecdir = ${exec_prefix}/libexec
localstatedir = ${prefix}/var
mandir = ${prefix}/man
oldincludedir = /usr/include
prefix = /usr/local
program_transform_name = s,x,x,
sbindir = ${exec_prefix}/sbin
sharedstatedir = ${prefix}/com
sysconfdir = ${prefix}/etc
target_alias = 

# This is Makefile.am, which is proceed by automake
AUTOMAKE_OPTIONS = gnits
ACLOCAL_AMFLAGS = -I .

SUBDIRS = . src man docs examples tools tests 

EXTRA_DIST = \
README \
README.checks \
README.cvs \
README.help \
README.mpi \
README.solaris \
README.support \
README.threads \
README.windows \
BUGS \
stoptests \
acx_pthread.m4 \
gtk.m4 \
gsl.m4 \
TODO


CLEANFILES = examplestest-coupler2.bmp.txt
DISTCLEANFILES = examplestest-coupler2.bmp.txt
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_CLEAN_FILES =
DIST_SOURCES =

RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
        ps-recursive install-info-recursive uninstall-info-recursive \
        all-recursive install-data-recursive install-exec-recursive \
        installdirs-recursive install-recursive uninstall-recursive \
        check-recursive installcheck-recursive
DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \
        Makefile.in NEWS THANKS TODO aclocal.m4 config.guess config.sub
\
        configure configure.ac depcomp install-sh missing mkinstalldirs
DIST_SUBDIRS = $(SUBDIRS)
all: all-recursive

.SUFFIXES:

am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
 configure.lineno
$(srcdir)/Makefile.in:  Makefile.am  $(top_srcdir)/configure.ac
$(ACLOCAL_M4)
        cd $(top_srcdir) && \
          $(AUTOMAKE) --gnits  Makefile
Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) && $(SHELL) ./config.status $@
$(am__depfiles_maybe)

$(top_builddir)/config.status: $(srcdir)/configure
$(CONFIG_STATUS_DEPENDENCIES)
        $(SHELL) ./config.status --recheck
$(srcdir)/configure:  $(srcdir)/configure.ac $(ACLOCAL_M4)
$(CONFIGURE_DEPENDENCIES)
        cd $(srcdir) && $(AUTOCONF)

$(ACLOCAL_M4):  configure.ac acx_pthread.m4 gsl.m4 gtk.m4
        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
uninstall-info-am:

# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing
Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
#     (which will cause the Makefiles to be regenerated when you run
`make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
        @set fnord $$MAKEFLAGS; amf=$$2; \
        dot_seen=no; \
        target=`echo $@ | sed s/-recursive//`; \
        list='$(SUBDIRS)'; for subdir in $$list; do \
          echo "Making $$target in $$subdir"; \
          if test "$$subdir" = "."; then \
            dot_seen=yes; \
            local_target="$$target-am"; \
          else \
            local_target="$$target"; \
          fi; \
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;;
esac; \
        done; \
        if test "$$dot_seen" = "no"; then \
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
        fi; test -z "$$fail"

mostlyclean-recursive clean-recursive distclean-recursive \
maintainer-clean-recursive:
        @set fnord $$MAKEFLAGS; amf=$$2; \
        dot_seen=no; \
        case "$@" in \
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
          *) list='$(SUBDIRS)' ;; \
        esac; \
        rev=''; for subdir in $$list; do \
          if test "$$subdir" = "."; then :; else \
            rev="$$subdir $$rev"; \
          fi; \
        done; \
        rev="$$rev ."; \
        target=`echo $@ | sed s/-recursive//`; \
        for subdir in $$rev; do \
          echo "Making $$target in $$subdir"; \
          if test "$$subdir" = "."; then \
            local_target="$$target-am"; \
          else \
            local_target="$$target"; \
          fi; \
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;;
esac; \
        done && test -z "$$fail"
tags-recursive:
        list='$(SUBDIRS)'; for subdir in $$list; do \
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS)
tags); \
        done
ctags-recursive:
        list='$(SUBDIRS)'; for subdir in $$list; do \
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS)
ctags); \
        done

ETAGS = etags
ETAGSFLAGS =

CTAGS = ctags
CTAGSFLAGS =

tags: TAGS

ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
        unique=`for i in $$list; do \
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i;
fi; \
          done | \
          $(AWK) '    { files[$$0] = 1; } \
               END { for (i in files) print i; }'`; \
        mkid -fID $$unique

TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
                $(TAGS_FILES) $(LISP)
        tags=; \
        here=`pwd`; \
        list='$(SUBDIRS)'; for subdir in $$list; do \
          if test "$$subdir" = .; then :; else \
            test -f $$subdir/TAGS && tags="$$tags -i
$$here/$$subdir/TAGS"; \
          fi; \
        done; \
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
        unique=`for i in $$list; do \
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i;
fi; \
          done | \
          $(AWK) '    { files[$$0] = 1; } \
               END { for (i in files) print i; }'`; \
        test -z "$(ETAGS_ARGS)$$tags$$unique" \
          || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
             $$tags $$unique

ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
                $(TAGS_FILES) $(LISP)
        tags=; \
        here=`pwd`; \
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
        unique=`for i in $$list; do \
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i;
fi; \
          done | \
          $(AWK) '    { files[$$0] = 1; } \
               END { for (i in files) print i; }'`; \
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
             $$tags $$unique

GTAGS:
        here=`$(am__cd) $(top_builddir) && pwd` \
          && cd $(top_srcdir) \
          && gtags -i $(GTAGS_ARGS) $$here

distclean-tags:
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)

top_distdir = .
distdir = $(PACKAGE)-$(VERSION)

am__remove_distdir = \
  { test ! -d $(distdir) \
    || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
         && rm -fr $(distdir); }; }

GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print

distdir: $(DISTFILES)
        @case `sed 15q $(srcdir)/NEWS` in \
        *"$(VERSION)"*) : ;; \
        *) \
          echo "NEWS not updated; not releasing" 1>&2; \
          exit 1;; \
        esac
        $(am__remove_distdir)
        mkdir $(distdir)
        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
        list='$(DISTFILES)'; for file in $$list; do \
          case $$file in \
            $(srcdir)/*) file=`echo "$$file" | sed
"s|^$$srcdirstrip/||"`;; \
          esac; \
          if test -f $$file || test -d $$file; then d=.; else
d=$(srcdir); fi; \
          dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
          if test "$$dir" != "$$file" && test "$$dir" != "."; then \
            dir="/$$dir"; \
            $(mkinstalldirs) "$(distdir)$$dir"; \
          else \
            dir=''; \
          fi; \
          if test -d $$d/$$file; then \
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
            fi; \
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
          else \
            test -f $(distdir)/$$file \
            || cp -p $$d/$$file $(distdir)/$$file \
            || exit 1; \
          fi; \
        done
        list='$(SUBDIRS)'; for subdir in $$list; do \
          if test "$$subdir" = .; then :; else \
            test -d $(distdir)/$$subdir \
            || mkdir $(distdir)/$$subdir \
            || exit 1; \
            (cd $$subdir && \
              $(MAKE) $(AM_MAKEFLAGS) \
                top_distdir="$(top_distdir)" \
                distdir=../$(distdir)/$$subdir \
                distdir) \
              || exit 1; \
          fi; \
        done
        -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o
\
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
          ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r
{} {} \; \
        || chmod -R a+r $(distdir)
dist-gzip: distdir
        $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c
>$(distdir).tar.gz
        $(am__remove_distdir)

dist dist-all: distdir
        $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c
>$(distdir).tar.gz
        $(am__remove_distdir)

# This target untars the dist file and tries a VPATH configuration. 
Then
# it guarantees that the distribution is self-contained by making
another
# tarfile.
distcheck: dist
        $(am__remove_distdir)
        GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
        chmod -R a-w $(distdir); chmod a+w $(distdir)
        mkdir $(distdir)/=build
        mkdir $(distdir)/=inst
        chmod a-w $(distdir)
        dc_install_base=`$(am__cd) $(distdir)/=inst && pwd` \
          && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
          && $(mkinstalldirs) $$dc_destdir \
          && cd $(distdir)/=build \
          && ../configure --srcdir=.. --prefix="$$dc_install_base" \
            $(DISTCHECK_CONFIGURE_FLAGS) \
          && $(MAKE) $(AM_MAKEFLAGS) \
          && $(MAKE) $(AM_MAKEFLAGS) dvi \
          && $(MAKE) $(AM_MAKEFLAGS) check \
          && $(MAKE) $(AM_MAKEFLAGS) install \
          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
          && $(MAKE) $(AM_MAKEFLAGS) uninstall \
          && $(MAKE) $(AM_MAKEFLAGS)
distuninstallcheck_dir="$$dc_install_base" \
                distuninstallcheck \
          && chmod -R a-w "$$dc_install_base" \
          && ({   $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install
\
               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir"
uninstall \
               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
                    distuninstallcheck_dir="$$dc_destdir"
distuninstallcheck; \
              } || { rm -rf "$$dc_destdir"; exit 1; }) \
          && rm -rf "$$dc_destdir" \
          && $(MAKE) $(AM_MAKEFLAGS) dist-gzip \
          && rm -f $(distdir).tar.gz \
          && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
        $(am__remove_distdir)
        @echo "$(distdir).tar.gz is ready for distribution" | \
          sed 'h;s/./=/g;p;x;p;x'
distuninstallcheck:
        cd $(distuninstallcheck_dir) \
        && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
           || { echo "ERROR: files left after uninstall:" ; \
                if test -n "$(DESTDIR)"; then \
                  echo "  (check DESTDIR support)"; \
                fi ; \
                $(distuninstallcheck_listfiles) ; \
                exit 1; } >&2
distcleancheck: distclean
        if test '$(srcdir)' = . ; then \
          echo "ERROR: distcleancheck can only run from a VPATH build" ;
\
          exit 1 ; \
        fi
        test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
          || { echo "ERROR: files left in build directory after
distclean:" ; \
               $(distcleancheck_listfiles) ; \
               exit 1; } >&2
check-am: all-am
check: check-recursive
all-am: Makefile
installdirs: installdirs-recursive
installdirs-am:

install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive

install-am: all-am
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am

installcheck: installcheck-recursive
install-strip:
        $(MAKE) $(AM_MAKEFLAGS)
INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
          INSTALL_STRIP_FLAG=-s \
          `test -z '$(STRIP)' || \
            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:

clean-generic:
        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)

distclean-generic:
        -rm -f Makefile $(CONFIG_CLEAN_FILES)
        -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)

maintainer-clean-generic:
        @echo "This command is intended for maintainers to use"
        @echo "it deletes files that may require special tools to
rebuild."
clean: clean-recursive

clean-am: clean-generic mostlyclean-am

distclean: distclean-recursive
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
distclean-am: clean-am distclean-generic distclean-tags

dvi: dvi-recursive

dvi-am:

info: info-recursive

info-am:

install-data-am:

install-exec-am:

install-info: install-info-recursive

install-man:

installcheck-am:

maintainer-clean: maintainer-clean-recursive
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
        -rm -rf autom4te.cache
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-recursive

mostlyclean-am: mostlyclean-generic

pdf: pdf-recursive

pdf-am:

ps: ps-recursive

ps-am:

uninstall-am: uninstall-info-am

uninstall-info: uninstall-info-recursive

.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean
\
        clean-generic clean-recursive ctags ctags-recursive dist \
        dist-all dist-gzip distcheck distclean distclean-generic \
        distclean-recursive distclean-tags distcleancheck distdir \
        distuninstallcheck dvi dvi-am dvi-recursive info info-am \
        info-recursive install install-am install-data install-data-am \
        install-data-recursive install-exec install-exec-am \
        install-exec-recursive install-info install-info-am \
        install-info-recursive install-man install-recursive \
        install-strip installcheck installcheck-am installdirs \
        installdirs-am installdirs-recursive maintainer-clean \
        maintainer-clean-generic maintainer-clean-recursive mostlyclean
\
        mostlyclean-generic mostlyclean-recursive pdf pdf-am \
        pdf-recursive ps ps-am ps-recursive tags tags-recursive \
        uninstall uninstall-am uninstall-info-am \
        uninstall-info-recursive uninstall-recursive

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
sparrow /export/home/davek/atlc % 

-- 
PLEASE NOTE:

If this message was sent to a newsgroup or mailing list, please 
reply to there. Personal e-mail is always welcome, but unless 
I have received e-mail from you previously, you may be sent 
an automatically generated reply, requesting that you send the
message again, adding a password in the subject line. Sorry,
but this action has been taken to prevent unsolicited 
commercial emails (spam mail). 

Dr. David Kirkby,
Senior Research Fellow,
Department of Medical Physics,
University College London,
11-20 Capper St, London, WC1E 6JA.
Tel: 020 7679 6409 Fax: 020 7679 6269
Internal telephone: ext 46409




reply via email to

[Prev in Thread] Current Thread [Next in Thread]