source: trunk/configure.in @ 1360

Last change on this file since 1360 was 1280, checked in by dkearney, 15 years ago

adding encodedata tool so i dont have to remember howto mimencode with or without a header from the command line. update nanovis-test adding a a "load script" menu option so i can write my nanovis commands in a file and just send all of the commands in the file to the nv server. also i can just send a vector file to nv server using the "Send flow file" menu option.

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