root/juggler/branches/2.2/modules/jackal/configure.ac

Revision 20711, 17.1 kB (checked in by patrick, 1 year ago)

More version number updates. These a minor (and probably unnoticed by everyone
but me), but I can't let them slip by.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 # ************** <auto-copyright.pl BEGIN do not edit this line> **************
2 #
3 # VR Juggler is (C) Copyright 1998-2007 by Iowa State University
4 #
5 # Original Authors:
6 #   Allen Bierbaum, Christopher Just,
7 #   Patrick Hartling, Kevin Meinert,
8 #   Carolina Cruz-Neira, Albert Baker
9 #
10 # This library is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Library General Public
12 # License as published by the Free Software Foundation; either
13 # version 2 of the License, or (at your option) any later version.
14 #
15 # This library is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 # Library General Public License for more details.
19 #
20 # You should have received a copy of the GNU Library General Public
21 # License along with this library; if not, write to the
22 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 # Boston, MA 02111-1307, USA.
24 #
25 # *************** <auto-copyright.pl END do not edit this line> ***************
26
27 # -----------------------------------------------------------------------------
28 # Base configure.in for JCCL.
29 # -----------------------------------------------------------------------------
30 # This file is "compiled" by GNU autoconf to generate the configure script
31 # that is actually run.
32 # -----------------------------------------------------------------------------
33
34 AC_INIT([JCCL], [1.2], [vrjuggler-devel@lists.sourceforge.net])
35 AC_CONFIG_HEADERS([common/jccl/jcclDefines.h])
36 AC_PREREQ([2.53])
37 AC_COPYRIGHT([VR Juggler is (C) Copyright 1998-2007 by Iowa State University])
38 AC_CONFIG_SRCDIR([common/jccl/jcclConfig.h])
39 AC_REVISION($Revision$)
40 AC_CONFIG_AUX_DIR([../../share/config])
41 DPP_PREREQ([2.1.2])
42 DPP_INIT
43
44 # Generate the reconfig script first so that it's easy to run configure again
45 # if it fails later on.
46 DPP_GEN_RECONFIG
47
48 # -----------------------------------------------------------------------------
49 # Path setup.
50 # -----------------------------------------------------------------------------
51 DPP_WIN32_SETUP
52
53 # $srcdir is the root directory of the juggler source tree.  To get a value for
54 # $VJROOT_ABS, we cd there and save the value of running pwd.  Then return to
55 # the directory where configure is being run ($topdir).
56 cd "$srcdir"
57 JCCLROOT_ABS=`pwd`
58
59 cd "$JCCLROOT_ABS/../.."
60 UNIX_JUGGLERROOT_ABS=`pwd`
61 cd "$topdir"
62
63 if test "x$CYGPATH" != "xno" ; then
64    JUGGLERROOT_ABS=`cygpath -w "$UNIX_JUGGLERROOT_ABS" | sed -e 's/\\\\/\\//g'`
65 else
66    JUGGLERROOT_ABS="$UNIX_JUGGLERROOT_ABS"
67 fi
68
69 # -----------------------------------------------------------------------------
70 # Command-line arguments (--enable-option, --with-pkg=package_name).
71 # -----------------------------------------------------------------------------
72 DPP_STD_CPP(yes)
73
74 # ------------------------------------------------------ #
75 # --enable-feature[=arg] and --disable-feature arguments #
76 # ------------------------------------------------------ #
77 AC_ARG_ENABLE([versioning],
78               [  --disable-versioning    Disable all versioning capabilities],
79               [ENABLE_VERSIONING="$enableval"], [ENABLE_VERSIONING='yes'])
80
81 # -------------------------------------------- #
82 # --with-pkg[=arg] and --without-pkg arguments #
83 # -------------------------------------------- #
84
85 # Force the use of GCC as the compiler.
86 # NOTE: This is not fully implemented yet for any platform, but it is partially
87 # usable on Windows.
88 DPP_WITH_GCC(no)
89
90 # Define the binary format.
91 DPP_ABI_SETUP
92
93 # Specify where JDOM is located
94 #AC_ARG_WITH(jdom, [  --with-jdom=<PATH>      Path to JDOM JAR file(s) ],
95 #            JDOM_JAR="$withval", JDOM_JAR='none')
96
97 # Specify where JUnit is located
98 AC_ARG_WITH(junit,
99             [  --with-junit=<PATH>     Path to JUnit JAR file(s) ],
100             JUNIT_JAR="$withval", JUNIT_JAR='none')
101
102 # -----------------------------------------------------------------------------
103 # System-dependent stuff.
104 # -----------------------------------------------------------------------------
105 DPP_SYSTEM_SETUP
106
107 # Depending on the target operating system, set various command options and
108 # such.
109 case $target_os in
110     # SGI running IRIX 6.*.
111     irix6*)
112         if test "x$USE_GCC" != "xyes" ; then
113             DBG_FLAGS="$DBG_FLAGS -gslim"
114         fi
115         ;;
116 esac
117
118 # -----------------------------------------------------------------------------
119 # Checks for programs.
120 # -----------------------------------------------------------------------------
121 VJ_COMPILER_SETUP
122 VJ_PROG_CC_PROF_FLAG(yes)
123 VJ_PROG_CXX_PROF_FLAG(yes)
124
125 # Ensure that the C++ compiler we've found is capable of compiling the newer
126 # newer C++ features that we need.
127 DPP_CXX_NAMESPACE([AC_MSG_ERROR([*** The library requires C++ namespace support ***])])
128 DPP_CXX_HAVE_STD
129 DPP_CXX_INLINE([AC_MSG_ERROR([*** The library requires C++ inline support ***])])
130 DPP_CXX_RTTI([AC_MSG_ERROR([*** The library requires C++ RTTI support ***])])
131 DPP_CXX_STATIC_CAST([AC_MSG_ERROR([*** The library requires C++ static_cast<> ***])])
132 DPP_CXX_DYNAMIC_CAST([AC_MSG_ERROR([*** The library requires C++ dynamic_cast<> ***])])
133
134 # Check for the JDK.
135 DPP_PATH_JAVA
136
137 # If there is still no value in $JAVAC, then warn that the GUI will not be
138 # built.
139 if test "x$JAVAC" = "xno" ; then
140     AC_MSG_WARN([*** Editor JavaBeans require javac -- they will not be built ***])
141     BUILD_JAVA='N'
142 else
143     BUILD_JAVA='Y'
144 #    # Check for JDOM.
145 #    DPP_CHECK_JAVA_STATIC_METHOD([org.jdom.Namespace],
146 #       [getNamespace(uri)], [String uri = new String("test")],
147 #       [BUILD_JAVA='Y'],
148 #       [ AC_MSG_WARN([*** JDOM required for editor JavaBeans ***])
149 #         BUILD_JAVA='N' ],
150 #       [$JDOM_JAR])
151 fi
152
153 # If we're building the editor JavaBeans, we should build the test cases too.
154 if test "x$BUILD_JAVA" = "xY" ; then
155     # Check for the JUnit library
156     DPP_CHECK_JAVA_STATIC_METHOD([junit.framework.Assert],
157         [assertTrue(true)], ,
158         [BUILD_JAVA_TEST_SUITE='Y'],
159         [ BUILD_JAVA_TEST_SUITE='N' ;
160           AC_MSG_WARN(*** JUnit required for Java test suite ***)
161         ],
162         [$JUNIT_JAR])
163
164     ANT="JAVA_HOME=\"$JDK_HOME\" \"$UNIX_JUGGLERROOT_ABS/external/ant/bin/ant\" --noconfig"
165 fi
166
167 # Ensure that a version of Perl greater than or equal to 5.004 is available.
168 DPP_PERL_VER([5.004], , , [AC_MSG_ERROR([*** Perl is required ***])])
169 AC_CHECK_PROG([MTREE_CMD], [mtree], [mtree], [\$(PERL) \$(scriptdir)/mtree.pl])
170 DPP_BASIC_PROGS([$PLATFORM], [$OS_TYPE])
171 DPP_PROG_INSTALL
172 VJ_LINKER_SETUP
173
174 # -----------------------------------------------------------------------------
175 # Checks for libraries.
176 # -----------------------------------------------------------------------------
177 MIN_VPR_VERSION='1.1.49'
178 VPR_PATH([$MIN_VPR_VERSION], BUILD_CXX='Y',
179          [AC_MSG_WARN([*** VPR required for JCCL ***])
180           BUILD_CXX='N'])
181
182 TWEEK_PATH_JAVA([0.19.2], ,
183                 [AC_MSG_WARN([*** Tweek Java required for editor JavaBeans ***])
184                  BUILD_JAVA='N'
185                 ])
186
187 if test "x$BUILD_CXX" = "xY" ; then
188    #VPR_SUBSYSTEM=`$VPR_CONFIG --subsystem`
189    DPP_HAVE_CPPUNIT([1.9.10])
190 fi
191
192 # -----------------------------------------------------------------------------
193 # Checks for header files.
194 # -----------------------------------------------------------------------------
195 AC_HEADER_STDC
196
197 # -----------------------------------------------------------------------------
198 # Miscellaneous checks.
199 # -----------------------------------------------------------------------------
200 DPP_INSTALLER(vrjuggler, 0644, 0755, 0755)
201
202 # -----------------------------------------------------------------------------
203 # Do Makefile substitutions.
204 # -----------------------------------------------------------------------------
205 VJ_VERSION_GROK(VERSION)
206
207 # Set the form of the version number used for versioned directory and file
208 # naming. Unstable builds use all three version numbers; stable builds use
209 # only the major and minor version numbers.
210 if test "x$ENABLE_VERSIONING" = "xyes" ; then
211    VERSION_DOT="$MAJOR_VERSION.$MINOR_VERSION"
212    VERSION_UNDERSCORE="${MAJOR_VERSION}_${MINOR_VERSION}"
213
214    HEADER_VERSION="jccl-$VERSION_DOT"
215    CLOSE_HEADER_VERSION='..'
216    LIBRARY_VERSION="-$VERSION_UNDERSCORE"
217    DATA_VERSION="jccl-$VERSION_DOT"
218    PLUGIN_VERSION="jccl-$VERSION_DOT"
219
220    AC_DEFINE([JCCL_USE_VERSIONING], ,
221              [Define if full package versioning capabilities are enabled])
222    AC_DEFINE_UNQUOTED([JCCL_VERSION_DOT], ["$VERSION_DOT"],
223                       [Jackal version string])
224 # If versioning is disabled, then none of the version variables need to be
225 # set except for $DATA_VERSION and $PLUGIN_VERSION. Their use is different
226 # than the others. The important thing to note is that the directory name is
227 # unversioned in this case.
228 else
229    DATA_VERSION="jccl"
230    PLUGIN_VERSION="jccl"
231 fi
232
233 # Add these C++ options when compiling with G++.
234 #if test "x$GXX" = "xyes" ; then
235 #   CXXFLAGS="-fhonor-std $CXXFLAGS"
236 #fi
237
238 CXXFLAGS="$CXXFLAGS $CXX_VISIBILITY_FLAGS $VPR_CXXFLAGS"
239 BASE_APP_LINK_FLAGS="$STDFLAGS $BASE_APP_LINK_FLAGS"
240 DEPEND_FLAGS="$VPR_CXXFLAGS"
241 jccl_cxxflags="$STD_FLAGS"
242
243 if test "x$PLATFORM" = "xIRIX" -a "x$USE_GCC" = "xno" ; then
244 #    CFLAGS="$CFLAGS -woff 1685,515,608,658,799,803,852,1048,1233,1499"
245 #    CXXFLAGS="$CXXFLAGS -woff 3322,1388 -w2"
246     CXXFLAGS="$CXXFLAGS -w2"
247     BASE_APP_LINK_FLAGS="$BASE_APP_LINK_FLAGS -J4 -all"
248 elif test "x$PLATFORM" = "xDarwin" ; then
249     changequote(<<, >>)
250     vpr_gcc_major=`echo $dpp_gcc_ver | sed -e 's/^\([0-9]*\)\..*/\1/'`
251     changequote([, ])
252
253     # GCC 4.0 in Darwin removed -fexport-coalesced.
254     if test $vpr_gcc_major -lt 4 ; then
255        CFLAGS_DYNLIB="$CFLAGS_DYNLIB -fexport-coalesced"
256        CXXFLAGS_DYNLIB="$CXXFLAGS_DYNLIB -fexport-coalesced"
257     fi
258
259     BASE_APP_LINK_FLAGS="$BASE_APP_LINK_FLAGS -Wl,-bind_at_load"
260 elif test "x$OS_TYPE" = "xWin32" -a "x$USE_GCC" != "xyes" ; then
261     vc_cflags='/QIfdiv /QI0f'
262     vc_cxxflags='/GR /GX /EHc /QIfdiv /QI0f'
263     CFLAGS="$CFLAGS /W3 $vc_cflags"
264     CXXFLAGS="$CXXFLAGS /W3 $vc_cxxflags"
265     BASE_APP_LINK_FLAGS="$BASE_APP_LINK_FLAGS /nologo /incremental:no"
266     DBG_FLAGS="$DBG_FLAGS /MDd"
267     OPT_FLAGS="$OPT_FLAGS /MD"
268     jccl_cxxflags="$vc_cxxflags $jccl_cxxflags"
269 fi
270
271 # For makedepend(1) to work properly on HP-UX with aCC, we have to include
272 # these extra paths.
273 if test "x$PLATFORM" = "xHP" ; then
274     _aCC_ROOT="/opt/aCC"
275     DEPEND_EXTRAS="$DEPEND_EXTRAS -I${_aCC_ROOT} -I${_aCC_ROOT}/include -I${_aCC_ROOT}/include/iostream"
276 elif test "x$OS_TYPE" = "xWin32" ; then
277     DEPEND_EXTRAS="$DEPEND_EXTRAS -D__cplusplus"
278 fi
279
280 # Define the base path to the source directory using $(JCCLROOT_ABS) as an
281 # alternative to using $(srcdir).
282 UNIX_JCCLROOT_ABS="$JCCLROOT_ABS"
283
284 # $APP_EXTRA_LIBS must list all the libraries need to link a JCCL-based
285 # application.
286 # $jccl_extra_libs only lists the external (non-Juggler) libraries needed by
287 # JCCL.
288 if test "x$OS_TYPE" = "xWin32" ; then
289     APP_EXTRA_LIBS="$LDFLAGS $VPR_LIBS $LIBS"
290     APP_EXTRA_PROF_LIBS="$APP_EXTRA_LIBS"
291     jccl_extra_libs="$LDFLAGS $LIBS"
292 else
293     APP_EXTRA_LIBS="$LDFLAGS $VPR_LIBS $LIBS"
294     APP_EXTRA_PROF_LIBS="$LDFLAGS $VPR_PROF_LIBS $LIBS"
295     jccl_extra_libs="$LDFLAGS $LIBS"
296 fi
297
298 jccl_lib_name="jccl$LIBRARY_VERSION"
299 jccl_prof_lib_name="jccl_p$LIBRARY_VERSION"
300
301 # Variables set in Makefiles found in the application trees.  All variables
302 # listed are for use only in the Makefile.in's found in that tree unless
303 # otherwise noted.  They are used in the following way:
304 #
305 #     * APP_VJ_LIBS_UTILS: The VR Juggler general utilities library.
306
307 # Put together the basic information needed to compile JCCL applications.
308 VJ_APP_COMPILER([$CC], [$CFLAGS], [$CXX], [$CXXFLAGS], [$DBG_FLAGS],
309                 [$OPT_FLAGS], [JCCL_BASE_DIR], [$DEFS], [$INCLUDES],
310                 [${_EXTRA_FLAGS}], [$HEADER_VERSION])
311 VJ_APP_LINKER([$CXX], [$BASE_APP_LINK_FLAGS], [$LDOPTS_DBG], [$LDOPTS_OPT],
312               [JCCL_BASE_DIR], [$jccl_lib_name], [$APP_EXTRA_LIBS])
313
314 APP_BASE_DIR='$(topdir)/instlinks'
315 APP_BASE_DIR_INST='$(JCCL_BASE_DIR)'
316
317 DYLIB_DEPS_JCCL="$APP_EXTRA_LIBS"
318 DYLIB_PROF_DEPS_JCCL="$APP_EXTRA_PROF_LIBS"
319
320 VJ_BUILD_LIB_FILE_LIST([$DYLIB_DEPS_JCCL], [DYLIB_DEP_FILES_JCCL])
321 VJ_BUILD_LIB_FILE_LIST([$DYLIB_PROF_DEPS_JCCL], [DYLIB_PROF_DEP_FILES_JCCL])
322
323 # Translate paths from UNIX-style to Win32.
324 if test "x$OS_TYPE" = "xWin32" ; then
325     JCCLROOT_ABS=`dospath -p "$JCCLROOT_ABS"`
326
327     if test "x$DEPEND_EXTRAS" != "x" ; then
328         DEPEND_EXTRAS=`dospath "$DEPEND_EXTRAS"`
329     fi
330
331     if test "x$INCLUDES" != "x" ; then
332         INCLUDES=`dospath "$INCLUDES"`
333     fi
334
335     if test "x$LIBS" != "x" ; then
336         LIBS=`dospath "$LIBS"`
337     fi
338
339     LN_S='cp -pr'
340     RM_LN='rm -rf'
341     MTREE_CMD=`dospath "$MTREE_CMD"`
342     JDK_HOME=`dospath -p "$JDK_HOME"`
343 #    APP_EXTRA_LIBS=`dospath "$APP_EXTRA_LIBS"`
344 else
345     RM_LN='rm -f'
346     JCCLROOT_ABS="$JCCLROOT_ABS"
347 fi
348
349 # Set up some sed expressions that will help separate the share directory from
350 # the full installation prefix.
351 if test "x$prefix" = "xNONE" ; then
352    _prefix_exp="s|^$ac_default_prefix/||"
353 else
354    _prefix_exp="s|^$prefix/||"
355 fi
356
357 # In Autoconf 2.60, datadir has been renamed to datarootdir.
358 if test "x$datarootdir" != "x" ; then
359    data_var="$datarootdir"
360 else
361    data_var="$datadir"
362 fi
363
364 # Make a best-effort attempt to extract the actual share directory from the
365 # full installation prefix.  This is not foolproof, but it will work in almost
366 # all cases.  A person would have to be doing something malicious or foolish
367 # to make it break.
368 data_subdir=`echo "$data_var" | sed -e 's|^${prefix}/||' -e "${_prefix_exp}"`
369 JCCL_SHARE_DIR="$data_subdir/$DATA_VERSION"
370
371 # Information needed to generate jccl.fpc.
372 if test "x$GNU_LD" = "xyes" ; then
373    static_begin="-Wl,-Bstatic"
374    static_end="-Wl,-Bdynamic"
375 else
376    static_begin="-B static"
377    static_end="-B dynamic"
378 fi
379
380 jccl_ldflags="-L\$prefix/lib\$LIBBITSUF"
381 jccl_libs="-l$jccl_lib_name"
382 jccl_prof_libs="-l$jccl_prof_lib_name"
383 jccl_extra_cxxflags=''
384
385 if test "x$PLATFORM" = "xIRIX" -a "x$USE_GCC" != "xyes" ; then
386     jccl32_flags='-n32'
387     jccl64_flags='-64'
388 elif test "x$GCC" = "xyes" ; then
389     jccl32_flags='-m32'
390     jccl64_flags='-m64'
391 fi
392
393 jccl_extra_ldflags="$EXTRA_LDFLAGS"
394
395 jars='TableLayout.jar'
396 beans='jccl_config.jar jccl_editors.jar jccl_rtrc.jar'
397
398 # XXX: For now, we won't include $JDOM_JAR in the JAR files output by
399 # jccl-config.  This is okay (for now) because Tweek depends on JDOM, and we
400 # depend on Tweek.  The real problem is with the sed expression below that
401 # has jccl_ in it.  I don't want to mess with it for fear of breaking something
402 # else.
403 #if test "x$JDOM_JAR" != "xnone" ; then
404 #   VJ_STRIP_JAR_PATH(strip_jdom, [$JDOM_JAR])
405 #   jars="$jars $strip_jdom"
406 #fi
407
408 changequote(<<, >>)
409 jccl_java_api_jars=`echo "$jars" | sed -e "s|\([A-Za-z]*\.jar\)|\\\${prefix}/$JCCL_SHARE_DIR/java/\1|g" -e "s/ /$JCPS/g"`
410 jccl_java_api_beans=`echo "$beans" | sed -e "s|\(jccl_[A-Za-z]*\.jar\)|\\\${prefix}/$JCCL_SHARE_DIR/beans/\1|g" -e "s/ /$JCPS/g"`
411 jccl_java_api_jars="${jccl_java_api_jars}${JCPS}${jccl_java_api_beans}"
412 changequote([, ])
413
414 includedir="$includedir/$HEADER_VERSION"
415 jccl_header_subdir="$HEADER_VERSION"
416 jccl_data_subdir="$DATA_VERSION"
417 jccl_plugin_subdir="$PLUGIN_VERSION"
418
419 DPP_SUBST
420
421 AC_SUBST(data_subdir)
422 AC_SUBST(topdir)
423 AC_SUBST(UNIX_JCCLROOT_ABS)
424 AC_SUBST(UNIX_JUGGLERROOT_ABS)
425 AC_SUBST(JCCLROOT_ABS)
426 AC_SUBST(JUGGLERROOT_ABS)
427 AC_SUBST(JCCL_SHARE_DIR)
428
429 AC_SUBST(VERSION_DOT)
430 AC_SUBST(VERSION_UNDERSCORE)
431 AC_SUBST(HEADER_VERSION)
432 AC_SUBST(CLOSE_HEADER_VERSION)
433 AC_SUBST(LIBRARY_VERSION)
434 AC_SUBST(DATA_VERSION)
435 AC_SUBST(PLUGIN_VERSION)
436
437 AC_SUBST(MIN_VPR_VERSION)
438
439 AC_SUBST(BUILD_CXX)
440
441 AC_SUBST(ANT)
442 AC_SUBST(EXTRA_LDFLAGS)
443 AC_SUBST(RM_LN)
444
445 AC_SUBST(BUILD_JAVA)
446
447 AC_SUBST(BUILD_JAVA_TEST_SUITE)
448 AC_SUBST(JUNIT_JAR)
449
450 AC_SUBST(APP_BASE_DIR)
451 AC_SUBST(APP_BASE_DIR_INST)
452
453 AC_SUBST(DYLIB_DEPS_JCCL)
454 AC_SUBST(DYLIB_DEP_FILES_JCCL)
455 AC_SUBST(DYLIB_PROF_DEPS_JCCL)
456 AC_SUBST(DYLIB_PROF_DEP_FILES_JCCL)
457
458 AC_SUBST(APP_BASIC_LIBS)
459 AC_SUBST(APP_EXTRA_LIBS)
460
461 AC_SUBST(static_begin)
462 AC_SUBST(static_end)
463 AC_SUBST(jccl_cxxflags)
464 AC_SUBST(jccl_ldflags)
465 AC_SUBST(jccl_libs)
466 AC_SUBST(jccl_prof_libs)
467 AC_SUBST(jccl_extra_cxxflags)
468 AC_SUBST(jccl_extra_ldflags)
469 AC_SUBST(jccl_extra_libs)
470 AC_SUBST(jccl32_flags)
471 AC_SUBST(jccl64_flags)
472 AC_SUBST(jccl_java_api_jars)
473 AC_SUBST(jccl_header_subdir)
474 AC_SUBST(jccl_data_subdir)
475 AC_SUBST(jccl_plugin_subdir)
476
477 # -----------------------------------------------------------------------------
478 # Final file generation step.
479 # -----------------------------------------------------------------------------
480
481 VJ_MTREE_LIB_GEN([JCCL], [mtree], [$PLATFORM], [$ISA])
482
483 AC_CONFIG_FILES([
484    jccl.fpc
485    Makefile
486    Makefile.inc
487    common.defs.mk
488    make.defs.mk
489    common/Makefile
490    common/Makefile.inc
491    common/jccl/Makefile
492    common/jccl/Plugins/Makefile
493    common/jccl/Util/Makefile
494    config/build.xml
495    config/Makefile
496    config/Makefile.inc
497    config/jccl/Makefile
498    config/jccl/Config/Makefile
499    editors/build.xml
500    editors/Makefile
501    editors/Makefile.inc
502    rtrc/Makefile
503    rtrc/jccl/Makefile
504    rtrc/jccl/RTRC/Makefile
505    data/Makefile
506    test/Makefile
507    test/TestSuite/Makefile
508    test/TestSuite/test.defs.mk
509    test/TestSuite/TestCases/Makefile
510    test/TestSuite/java/Makefile
511    mtree/JCCL.data.dist
512    mtree/JCCL.include.dist
513    mtree/JCCL.install.dist
514    mtree/JCCL.java.dist
515    mtree/JCCL.test.dist
516    mtree/JCCL.tools.dist
517    VARS.pl
518    ]
519    )
520
521 AC_OUTPUT
Note: See TracBrowser for help on using the browser.