source: trunk/configure.in @ 1615

Last change on this file since 1615 was 1593, checked in by gah, 15 years ago
File size: 18.1 KB
Line 
1AC_INIT([Rappture],[1.1],[rappture@nanohub.org])
2dnl AC_CONFIG_HEADER(src/core/RpConfig.h)
3AC_CONFIG_AUX_DIR(cf)
4AC_CONFIG_HEADER(src/core/config.h)
5
6#------------------------------------------------------------------------
7# Handle the --prefix=... option
8#------------------------------------------------------------------------
9
10if test "${prefix}" = "NONE"; then
11    prefix=/usr/local
12fi
13if test "${exec_prefix}" = "NONE"; then
14    exec_prefix=$prefix
15fi
16
17if test "${libdir}" != "${prefix}/lib"; then
18    LIB_SEARCH_DIRS="-L${prefix}/lib -L${libdir}"
19else
20    LIB_SEARCH_DIRS="-L${libdir}"
21fi
22
23AC_SUBST(LIB_SEARCH_DIRS)
24
25AC_PROG_INSTALL
26AC_PROG_MAKE_SET
27
28# Check for C, C++, and FORTRAN
29AC_PROG_CC
30AC_PROG_CXX
31# Avoid g95
32AC_PROG_INSTALL
33AC_PROG_RANLIB
34AC_PROG_LN_S
35AC_PROG_MKDIR_P
36
37AC_PROG_F77([g77 gfortran f77 fort77 f90 xlf xlf90 fl32])
38
39AC_LANG([C])
40
41AC_HEADER_STDC
42AC_CHECK_FUNC(atol,,AC_MSG_ERROR(oops! no atol ?!?))
43
44AC_LANG([C++])
45
46AC_CHECK_FUNCS([sysinfo])
47AC_CHECK_HEADERS(sys/sysinfo.h)
48
49AC_CHECK_LIB(m, main,,AC_MSG_ERROR(librappture requires libm))
50AC_CHECK_LIB(stdc++, main,,AC_MSG_ERROR(librappture requires libstdc++))
51AC_CHECK_HEADERS(algorithm,,AC_MSG_WARN(STL classes missing ?))
52AC_CHECK_HEADERS(cctype,,AC_MSG_WARN(STL classes missing ?))
53AC_CHECK_HEADERS(cfloat,,AC_MSG_WARN(STL classes missing ?))
54AC_CHECK_HEADERS(cmath,,AC_MSG_WARN(STL classes missing ?))
55AC_CHECK_HEADERS(cstdio,,AC_MSG_WARN(STL classes missing ?))
56AC_CHECK_HEADERS(cstdlib,,AC_MSG_WARN(STL classes missing ?))
57AC_CHECK_HEADERS(cstring,,AC_MSG_WARN(STL classes missing ?))
58AC_CHECK_HEADERS(fstream,,AC_MSG_WARN(STL classes missing ?))
59AC_CHECK_HEADERS(list,,AC_MSG_WARN(STL classes missing ?))
60AC_CHECK_HEADERS(iostream,,AC_MSG_WARN(STL classes missing ?))
61AC_CHECK_HEADERS(iterator,,AC_MSG_WARN(STL classes missing ?))
62AC_CHECK_HEADERS(sstream,,AC_MSG_WARN(STL classes missing ?))
63AC_CHECK_HEADERS(stack,,AC_MSG_WARN(STL classes missing ?))
64AC_CHECK_HEADERS(string,,AC_MSG_WARN(STL classes missing ?))
65AC_CHECK_HEADERS(vector,,AC_MSG_WARN(STL classes missing ?))
66
67AC_CHECK_HEADERS(assert.h,,AC_MSG_WARN(C headers missing ?))
68AC_CHECK_HEADERS(ctype.h,,AC_MSG_WARN(C headers missing ?))
69AC_CHECK_HEADERS(errno.h,,AC_MSG_WARN(C headers missing ?))
70AC_CHECK_HEADERS(limits.h,,AC_MSG_WARN(C headers missing ?))
71AC_CHECK_HEADERS(string.h,,AC_MSG_WARN(C headers missing ?))
72AC_CHECK_HEADERS(stdlib.h,,AC_MSG_WARN(C headers missing ?))
73AC_CHECK_HEADERS(stddef.h,,AC_MSG_WARN(C headers missing ?))
74AC_CHECK_HEADERS(float.h,,AC_MSG_WARN(C headers missing ?))
75AC_CHECK_HEADERS(math.h,,AC_MSG_WARN(C headers missing ?))
76dnl AC_CHECK_HEADERS(ieeefp.h,,AC_MSG_WARN(C headers missing ?))
77AC_CHECK_HEADERS(malloc.h,,AC_MSG_WARN(C headers missing ?))
78AC_CHECK_HEADERS(memory.h,,AC_MSG_WARN(C headers missing ?))
79AC_CHECK_HEADERS(unistd.h,,AC_MSG_WARN(C headers missing ?))
80
81AC_CHECK_HEADERS(inttypes.h,,AC_MSG_WARN(C headers missing ?))
82if test "${ac_cv_header_inttypes_h}" = "yes" ; then
83  HAVE_INTTYPES_H=1
84else
85  HAVE_INTTYPES_H=0
86fi
87AC_SUBST(HAVE_INTTYPES_H)
88
89
90SC_CONFIG_CFLAGS
91
92make_command=""
93for m in "$MAKE" make gmake gnumake ; do
94  if test "x${m}" != "x" ; then
95    if  ( sh -c "$m --version" 2>/dev/null | grep GNU >/dev/null ) ; then
96      make_command=$m; break;
97    fi
98  fi
99done
100if test "x${make_command}" = "x" ; then
101  AC_MSG_ERROR([Requires GNU make. You can specify a version with \$MAKE])
102fi
103AC_SUBST(MAKE, ${make_command})
104
105AC_ARG_ENABLE(
106    [gui],
107    [AS_HELP_STRING([--enable-gui], [build code related to the graphical user interface @<:@default=yes@:>@])],
108    [],
109    [enable_gui=yes])
110
111ENABLE_GUI=
112if test "$enable_gui" != "no" ; then
113    ENABLE_GUI="yes"
114fi
115AC_SUBST(ENABLE_GUI)
116
117with_tclsh="yes"
118AC_ARG_WITH(
119    [tclsh],
120    [AS_HELP_STRING([--with-tclsh[=DIR]],
121        [location of tclsh @<:@default=yes@:>@])],
122    [],
123    [with_tclsh=yes])
124
125TCLSH=
126if test "$with_tclsh" != "no" ; then
127    AC_MSG_CHECKING([for tclsh])
128    if test -x "$with_tclsh/bin/tclsh"
129    then
130        echo Found tclsh in $with_tclsh/bin/tclsh
131        TCLSH="$with_tclsh/bin/tclsh"
132    else
133        if test -x "$with_tclsh"
134        then
135            echo Found tclsh in $with_tclsh
136            TCLSH="$with_tclsh"
137        else
138            AC_PATH_PROG(TCLSH, tclsh)
139        fi
140    fi
141fi
142AC_MSG_RESULT([${TCLSH}])
143AC_SUBST(TCLSH)
144
145
146AC_ARG_WITH(
147    [matlab],
148    [AS_HELP_STRING([--with-matlab[=DIR]],
149        [location of matlab and mex compiler @<:@default=yes@:>@])],
150    [with_matlab=$withval],
151    [with_matlab=yes])
152
153MCC=""
154MEX=""
155MEX_ARCH=""
156MEXEXT=""
157MATLAB=
158if test "$with_matlab" != "no" ; then
159  if test "$with_matlab" = "yes" ; then
160    AC_PATH_PROG(MATLAB, matlab)
161  else
162    AC_PATH_PROG(MATLAB, matlab, [], [${with_matlab}/bin:${with_matlab}])
163  fi
164fi
165
166if test "x$MATLAB" != "x" ; then
167  # Found matlab.  May be a symlink to the real binary.  Run "matlab -e"
168  # to tell where matlab is installed.
169
170  matlab_bindir=`${MATLAB} -e | grep "MATLAB=" | sed s/MATLAB=//`/bin
171
172  # Now see if we can find "mex" or "mexext" there.
173  AC_PATH_PROG(MEX, mex, [], [${matlab_bindir}])
174  AC_PATH_PROG(MEXEXT, mexext, [], [${matlab_bindir}])
175
176  # Run "mexext" to get the expected module extension for this platform.
177  AC_MSG_CHECKING([for mex extension])
178  if test "x$MEXEXT" != "x" ; then
179    MEXEXT=`$MEXEXT`
180  else
181    MEXEXT="mexglx"
182  fi
183  AC_MSG_RESULT([$MEXEXT])
184  AC_PATH_PROG(MCC, mcc, [], [${matlab_bindir}])
185  AC_MSG_CHECKING([for mcc extension])
186fi
187
188AC_SUBST(MCC)
189AC_SUBST(MEX)
190AC_SUBST(MATLAB)
191AC_SUBST(MEX_ARCH)
192AC_SUBST(MEXEXT)
193
194AC_ARG_WITH(
195    [octave],
196    [AS_HELP_STRING([--with-octave[=DIR]],
197        [location of octave compiler MKOCTFILE @<:@default=yes@:>@])],
198    [with_octave=$withval],
199    [with_octave=yes])
200
201OCTAVE=
202OCTAVE_VERSION=
203OCTAVE_VERSION_MAJOR=
204MKOCTFILE=
205if test "$with_octave" != "no" ; then
206  AC_MSG_CHECKING([for octave and mkoctfile])
207  if test "$with_octave" = "yes" ; then
208    AC_PATH_PROG(OCTAVE, octave)
209    AC_PATH_PROG(MKOCTFILE, mkoctfile)
210  else
211    AC_PATH_PROG(OCTAVE, octave, [], [$with_octave/bin:$with_octave])
212    AC_PATH_PROG(MKOCTFILE, mkoctfile, [],
213        [${with_octave}/bin/mkoctfile:${with_octave}])
214  fi
215  if test "x${OCTAVE}" != "x" ; then
216    OCTAVE_VERSION=`${OCTAVE} -v | grep version | cut -d' ' -f4`
217    OCTAVE_VERSION_MAJOR=`echo ${OCTAVE_VERSION} | cut -d'.' -f1`
218  fi
219fi
220AC_SUBST(OCTAVE)
221AC_SUBST(OCTAVE_VERSION)
222AC_SUBST(OCTAVE_VERSION_MAJOR)
223AC_SUBST(MKOCTFILE)
224
225AC_ARG_WITH(
226    [perl],
227    [AS_HELP_STRING([--with-perl[=DIR]], [location of perl @<:@default=yes@:>@])],
228    [],
229    [with_perl=yes])
230
231PERL=
232PERL_INCLUDES=
233PERL_ARCHLIB=
234PERL_ARCHLIBEXP=
235PERL_VERSION=
236PERL_VENDORLIB=
237PERL_PRIVLIB=
238PERL_CPPFLAGS=
239PERL_CCFlAGS=
240PERL_VERSION_RV=
241PERL_LIBSPEC=
242if test "$with_perl" != "no" ; then
243  AC_MSG_CHECKING([for perl])
244  if test "$with_perl" != "yes" ; then
245    AC_PATH_PROG(PERL, perl, [], [$with_perl/bin:$with_perl])
246  else
247    AC_PATH_PROG(PERL, perl)
248  fi
249  if test "x${PERL}" != "x" ; then
250    PERL_ARCHLIB=`${PERL} -MConfig -e 'print $Config{archlib}'`
251    PERL_VERSION=`${PERL} -MConfig -e 'print $Config{version}'`
252    PERL_CCFLAGS=`${PERL} -MConfig -e 'print $Config{ccflags}'`
253    PERL_CPPFLAGS=`${PERL} -MConfig -e 'print $Config{cppflags}'`
254    PERL_VENDORLIB=`${PERL} -MConfig -e 'print $Config{vendorlib}'`
255    PERL_PRIVLIB=`${PERL} -MConfig -e 'print $Config{privlib}'`
256    PERL_INSTALLARCHLIB=`${PERL} -MConfig -e 'print $Config{installarchlib}'`
257    PERL_ARCHLIBEXP=`${PERL} -MConfig -e 'print $Config{archlibexp}'`
258    PERL_VERSION_RV=`echo ${PERL_VERSION} | cut -d'.' -f1-2`
259    echo perllib="${PERL_ARCHLIBEXP}/CORE/libperl${SHLIB_SUFFIX}"
260
261    # libperl may or may not be installed.  Check for its existence.
262    if test -f "${PERL_ARCHLIBEXP}/CORE/libperl${SHLIB_SUFFIX}" ; then
263      PERL_LIBSPEC="-L${PERL_ARCHLIBEXP}/CORE -lperl"
264    fi
265  fi
266fi
267AC_MSG_RESULT([${PERL}])
268AC_SUBST(PERL)
269AC_SUBST(PERL_INCLUDES)
270AC_SUBST(PERL_ARCHLIB)
271AC_SUBST(PERL_ARCHLIBEXP)
272AC_SUBST(PERL_VERSION)
273AC_SUBST(PERL_CCFLAGS)
274AC_SUBST(PERL_CPPFLAGS)
275AC_SUBST(PERL_VENDORLIB)
276AC_SUBST(PERL_PRIVLIB)
277AC_SUBST(PERL_INSTALLARCHLIB)
278AC_SUBST(PERL_VERSION_RV)
279AC_SUBST(PERL_LIBSPEC)
280
281PYTHON=""
282PYTHON_CFLAGS=""
283PYTHON_CPPFLAGS=""
284HAVE_PYTHON_DISTUTILS=""
285PYTHON_INCLUDES=""
286PYTHON_LDFLAGS=""
287PYTHON_LIB=""
288PYTHON_LIBDIR=""
289PYTHON_SITE_DIR=""
290PYTHON_SITE_PACKAGES=""
291PYTHON_VERSION=""
292pythondir=""
293
294AC_ARG_WITH([python],
295    [AS_HELP_STRING([--with-python[=DIR]],[location of python @<:@default=yes@:>@])],
296    [],
297    [with_python=yes])
298
299if test "$with_python" != "no" ; then
300  AC_MSG_CHECKING([for python])
301  if test -x "$with_python/bin/python"; then
302    echo Found python in $with_python/bin/python
303    PYTHON="$with_python/bin/python"
304  elif test -x "$with_python"; then
305    echo Found python in $with_python
306    PYTHON="$with_python"
307  else
308    AC_PATH_PROG(PYTHON, python python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5)
309  fi
310  if test "x${PYTHON}" != "x"; then
311    PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[[0:3]]"`
312    echo Using python version $PYTHON_VERSION
313  fi
314  if test "x${PYTHON_VERSION}" != "x"; then
315    if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
316     -d $with_python/lib/python$PYTHON_VERSION/site-packages; then
317      PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
318      PYTHON_SITE_PACKAGES=$with_python/lib/python$PYTHON_VERSION/site-packages
319    else
320      if test -r $prefix/include/python$PYTHON_VERSION/Python.h; then
321        PYTHON_INCLUDES='$(prefix)/include/python$(PYTHON_VERSION)'
322        PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
323      else
324        if test -r /usr/include/python$PYTHON_VERSION/Python.h; then
325          PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
326          PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
327        else
328          echo could not find python$PYTHON_VERSION/Python.h
329        fi
330      fi
331      if test ! -d "$PYTHON_SITE_PACKAGES"; then
332        PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"`
333      fi
334    fi
335  fi
336  if test "x$with_python" != "x" ;  then
337    pythondir='$(PYTHON_SITE_PACKAGES)'
338  else
339    pythondir='$(libdir)/python${PYTHON_VERSION}/site-packages'
340  fi
341
342  AC_MSG_CHECKING([for python distutils])
343  ${PYTHON} -c "from distutils.core import setup; setup(name='test')" \
344        build build_ext 2>&1 > /dev/null
345  if test $? = 0 ; then
346    HAVE_PYTHON_DISTUTILS="yes"
347  else
348     HAVE_PYTHON_DISTUTILS="no"
349  fi
350  AC_MSG_RESULT([$HAVE_PYTHON_DISTUTILS])
351
352  if test "${HAVE_PYTHON_DISTUTILS}" = "yes"; then
353    #
354    # Check for Python include path
355    #
356    AC_MSG_CHECKING([for Python include path])
357    if test "x${PYTHON_CPPFLAGS}" = "x"; then
358      incdir_path=`${PYTHON} -c "import distutils.sysconfig; \
359       print distutils.sysconfig.get_python_inc();"`
360      if test -n "${incdir}"; then
361        python_path="-I${incdir}"
362      fi
363      PYTHON_CPPFLAGS=$python_path
364    fi
365    AC_MSG_RESULT([$PYTHON_CPPFLAGS])
366    AC_SUBST([PYTHON_CPPFLAGS])
367    #
368    # python distutils found, get settings from python directly
369    #
370    AC_MSG_CHECKING([location of site-packages])
371    PYTHON_SITE_DIR="`${PYTHON} -c 'from distutils import sysconfig; print sysconfig.get_python_lib(0);'`"
372
373    PYTHON_CFLAGS="`$PYTHON -c 'from distutils import sysconfig; flags = [[\"-I\" + sysconfig.get_python_inc(0), \"-I\" + sysconfig.get_python_inc(1), \" \".join(sysconfig.get_config_var(\"CFLAGS\").split())]]; print \" \".join(flags);'`"
374    PYTHON_LDFLAGS="`$PYTHON -c 'from distutils import sysconfig; libs = sysconfig.get_config_var(\"LIBS\").split() + sysconfig.get_config_var(\"SYSLIBS\").split(); libs.append(\"-lpython\"+sysconfig.get_config_var(\"VERSION\")); print \" \".join(libs);'`"
375    PYTHON_LIB="`$PYTHON -c 'from distutils import sysconfig; print \"python\" + sysconfig.get_config_var(\"VERSION\");'`"
376    PYTHON_LIBDIR="`$PYTHON -c 'from distutils import sysconfig; print sysconfig.get_config_var(\"LIBDIR\");'`"
377  fi
378fi 
379AC_SUBST(pythondir)
380
381AC_SUBST(PYTHON)
382AC_SUBST(PYTHON_VERSION)
383AC_SUBST(PYTHON_INCLUDES)
384AC_SUBST(PYTHON_SITE_PACKAGES)
385AC_SUBST(HAVE_PYTHON_DISTUTILS)
386
387rappture_with_ruby="yes"
388
389RUBY=""
390RUBY_DEV_PKG="no"
391
392AC_ARG_WITH(ruby,
393  AS_HELP_STRING([--with-ruby=PATH], [absolute path to ruby executable]),
394  [rappture_with_ruby=$with_val])
395if test "${rappture_with_ruby}" != "no" ; then
396  if test "${rappture_with_ruby}" = "yes" ; then
397    AC_PATH_PROG(RUBY, ruby)
398  else
399    AC_PATH_PROG(RUBY, ruby, [],
400      [${rappture_with_ruby}/bin/ruby:${rappture_with_ruby}])
401  fi
402fi
403AC_SUBST(RUBY)
404
405RUBY_VERSION_RV=
406RUBY_PLATFORM=
407if test "x${RUBY}" != "x" ; then
408  AX_PROG_RUBY_VERSION
409  RUBY_VERSION_RV=`echo ${RUBY_VERSION} | cut -d'.' -f1-2`
410  RUBY_PLATFORM=`ruby -e 'puts RUBY_PLATFORM'`
411  ac_mkmf_result=`${RUBY} -r mkmf -e ";" 2>&1`
412  if test -z "$ac_mkmf_result"; then
413    HAVE_RUBY_DEVEL="yes"
414    AX_RUBY_DEV_FLAGS([${RUBY}])
415  fi
416fi
417AC_SUBST(HAVE_RUBY_DEVEL)
418AC_SUBST(RUBY_VERSION_RV)
419AC_SUBST(RUBY_PLATFORM)
420
421RP_BASE=`pwd`
422AC_SUBST(RP_BASE)
423
424SC_ENABLE_SHARED
425
426#--------------------------------------------------------------------
427# This macro figures out what flags to use with the compiler/linker
428# when building shared/static debug/optimized objects.  This information
429# is all taken from the tclConfig.sh file.
430#--------------------------------------------------------------------
431
432AC_SUBST(CFLAGS_DEBUG)
433AC_SUBST(CFLAGS_OPTIMIZE)
434AC_SUBST(STLIB_LD)
435AC_SUBST(SHLIB_LD)
436AC_SUBST(SHLIB_CFLAGS)
437AC_SUBST(SHLIB_LDFLAGS)
438AC_SUBST(SHLIB_SUFFIX)
439
440if test -f "${exec_prefix}/lib/tclConfig.sh" ; then
441  . ${exec_prefix}/lib/tclConfig.sh
442fi
443if test -f "${exec_prefix}/lib/tclConfig.sh" ; then
444  . ${exec_prefix}/lib/tkConfig.sh     
445fi
446AC_SUBST(TCL_VERSION)
447AC_SUBST(TK_VERSION)
448
449# -----------------------------------------------------------------------
450#
451# Compiler characteristics:
452#   Check for existence of types of size_t and pid_t
453#
454# -----------------------------------------------------------------------
455
456AC_C_BIGENDIAN
457AC_CHECK_SIZEOF(int)
458AC_CHECK_SIZEOF(long)
459AC_CHECK_SIZEOF(long long)
460AC_CHECK_SIZEOF(void *)
461
462SIZEOF_LONG="${ac_cv_sizeof_long}"
463SIZEOF_LONG_LONG="${ac_cv_sizeof_long_long}"
464SIZEOF_VOID_P="${ac_cv_sizeof_void_p}"
465SIZEOF_INT="${ac_cv_sizeof_int}"
466AC_SUBST(SIZEOF_INT)
467AC_SUBST(SIZEOF_LONG)
468AC_SUBST(SIZEOF_LONG_LONG)
469AC_SUBST(SIZEOF_VOID_P)
470
471
472#--------------------------------------------------------------------
473# Set the default compiler switches based on the --enable-symbols
474# option.
475#--------------------------------------------------------------------
476
477SC_ENABLE_SYMBOLS
478
479if test "${SHARED_BUILD}" = "1" ; then
480    CFLAGS='${CFLAGS_DEFAULT} ${CFLAGS_WARNING} ${SHLIB_CFLAGS}'
481else
482    CFLAGS='${CFLAGS_DEFAULT} ${CFLAGS_WARNING}'
483fi
484
485ac_configure_args="--disable-threads --enable-shared"
486AC_CONFIG_SUBDIRS( [packages/optimizer/src] )
487
488dnl read Makefile.in and write Makefile
489AC_CONFIG_FILES([
490    Makefile
491    packages/Makefile
492    src/Makefile
493    src/core/Makefile
494    src/core2/Makefile
495    src/objects/Makefile
496    src/objects/RpHash.h
497    gui/Makefile
498    gui/apps/Makefile
499    gui/apps/about
500    gui/apps/encodedata
501    gui/apps/rappture
502    gui/apps/rappture-csh.env
503    gui/apps/rappture.env
504    gui/apps/rerun
505    gui/apps/simsim
506    gui/apps/xmldiff
507    gui/pkgIndex.tcl
508    gui/scripts/Makefile
509    lang/Makefile
510    lang/perl/Makefile
511    lang/perl/Makefile.PL
512    lang/python/Makefile
513    lang/python/setup.py
514    lang/matlab/Makefile
515    lang/octave/Makefile
516    lang/octave/RpOctaveInterface.h
517    lang/ruby/Makefile
518    lang/ruby/build.rb
519    lang/tcl/Makefile
520    lang/tcl/pkgIndex.tcl
521    lang/tcl/src/Makefile
522    lang/tcl/scripts/Makefile
523    lang/tcl/tests/Makefile
524    lib/Makefile
525    examples/3D/Makefile
526    examples/Makefile
527    examples/app-fermi/2.0/Makefile
528    examples/app-fermi/Makefile
529    examples/app-fermi/cee/Makefile
530    examples/app-fermi/fortran/Makefile
531    examples/app-fermi/matlab/Makefile
532    examples/app-fermi/matlab/compiled/Makefile
533    examples/app-fermi/matlab/uncompiled/Makefile
534    examples/app-fermi/octave/Makefile
535    examples/app-fermi/octave/2/Makefile
536    examples/app-fermi/octave/3/Makefile
537    examples/app-fermi/perl/Makefile
538    examples/app-fermi/python/Makefile
539    examples/app-fermi/ruby/Makefile
540    examples/app-fermi/tcl/Makefile
541    examples/app-fermi/wrapper/Makefile
542    examples/app-fermi/wrapper/cee/Makefile
543    examples/app-fermi/wrapper/python/Makefile
544    examples/app-fermi/wrapper/tcl/Makefile
545    examples/c-example/Makefile
546    examples/canvas/Makefile
547    examples/demo.bash
548    examples/flow/Makefile
549    examples/flow/demo1/Makefile
550    examples/flow/demo2/Makefile
551    examples/flow/demo3/Makefile
552    examples/graph/Makefile
553    examples/objects/Makefile
554    examples/objects/axis/Makefile
555    examples/objects/contour/Makefile
556    examples/objects/curve/Makefile
557    examples/objects/dxWriter/Makefile
558    examples/objects/floatBuffer/Makefile
559    examples/objects/histogram/Makefile
560    examples/objects/library/Makefile
561    examples/objects/number/Makefile
562    examples/objects/path/Makefile
563    examples/objects/plot/Makefile
564    examples/objects/scatter/Makefile
565    examples/objects/string/Makefile
566    examples/objects/tree/Makefile
567    examples/objects/xmlparser/Makefile
568    examples/zoo/Makefile
569    examples/zoo/binary/Makefile
570    examples/zoo/boolean/Makefile
571    examples/zoo/choice/Makefile
572    examples/zoo/cloud/Makefile
573    examples/zoo/cloud/matlab/Makefile
574    examples/zoo/curve/Makefile
575    examples/zoo/enable/Makefile
576    examples/zoo/field/Makefile
577    examples/zoo/group/Makefile
578    examples/zoo/image/Makefile
579    examples/zoo/image/docs/Makefile
580    examples/zoo/image/examples/Makefile
581    examples/zoo/integer/Makefile
582    examples/zoo/integer2/Makefile
583    examples/zoo/loader/Makefile
584    examples/zoo/loader/examples/Makefile
585    examples/zoo/loadrun/Makefile
586    examples/zoo/log/Makefile
587    examples/zoo/note/Makefile
588    examples/zoo/note/docs/Makefile
589    examples/zoo/number/Makefile
590    examples/zoo/number2/Makefile
591    examples/zoo/phase/Makefile
592    examples/zoo/sequence/Makefile
593    examples/zoo/sequence/examples/Makefile
594    examples/zoo/string/Makefile
595    examples/zoo/structure/Makefile
596    examples/zoo/structure/examples/Makefile
597    examples/zoo/table/Makefile
598    examples/zoo/unirect2d/Makefile
599    test/Makefile
600    test/src/Makefile
601])
602AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.