source: trunk/configure.in @ 1264

Last change on this file since 1264 was 1262, checked in by dkearney, 15 years ago

attempting to fix compiler warning for octave's print_usage function
this seems to work for octave3.0
also adding checks to configure for more header files

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