1*cf619909Spfg--- misc/BeanShell-2.0b6/build.xml Fri Dec 19 17:14:27 2003 2*cf619909Spfg+++ misc/build/BeanShell-2.0b6/build.xml Fri Mar 28 15:55:04 2008 3*cf619909Spfg@@ -10,7 +10,7 @@ 4*cf619909Spfg - Why can't I nest filesets? This seems like it would be so easy and 5*cf619909Spfg useful... 6*cf619909Spfg --> 7*cf619909Spfg-<project name="beanshell" default="compile" basedir="."> 8*cf619909Spfg+<project name="beanshell" default="jarall" basedir="."> 9*cf619909Spfg 10*cf619909Spfg <!-- Project Configuration --> 11*cf619909Spfg 12*cf619909Spfg@@ -65,6 +65,9 @@ 13*cf619909Spfg <property name="exclude-engine" value="bsh/engine/**"/> 14*cf619909Spfg --> 15*cf619909Spfg 16*cf619909Spfg+ <property name="exclude-bsf" 17*cf619909Spfg+ value="bsh/util/BeanShellBSFEngine.java,TestBshBSF.java"/> 18*cf619909Spfg+ 19*cf619909Spfg <!-- Uncomment to build without the ASM class generator code. 20*cf619909Spfg <property name="exclude-classgen" 21*cf619909Spfg value="bsh/org/objectweb/asm/**,bsh/ClassGeneratorImpl.java,bsh/ClassGeneratorUtil.java,bsh/DelayedEvalBshMethod.java"/> 22*cf619909Spfg@@ -75,6 +78,9 @@ 23*cf619909Spfg value="bsh/servlet/*"/> 24*cf619909Spfg --> 25*cf619909Spfg 26*cf619909Spfg+ <property name="exclude-servlet" 27*cf619909Spfg+ value="bsh/servlet/*"/> 28*cf619909Spfg+ 29*cf619909Spfg <!-- Legacy excludes. Comment this *out* to build these legacy items --> 30*cf619909Spfg <property name="excludes-legacy" 31*cf619909Spfg value="bsh/JThis.java"/> 32*cf619909Spfg--- misc/BeanShell-2.0b6/makefile.mk Fri Mar 28 15:56:40 2008 33*cf619909Spfg+++ misc/build/BeanShell-2.0b6/makefile.mk Fri Mar 28 15:56:06 2008 34*cf619909Spfg@@ -1 +1,29 @@ 35*cf619909Spfg-dummy 36*cf619909Spfg+#************************************************************** 37*cf619909Spfg+# 38*cf619909Spfg+# Licensed to the Apache Software Foundation (ASF) under one 39*cf619909Spfg+# or more contributor license agreements. See the NOTICE file 40*cf619909Spfg+# distributed with this work for additional information 41*cf619909Spfg+# regarding copyright ownership. The ASF licenses this file 42*cf619909Spfg+# to you under the Apache License, Version 2.0 (the 43*cf619909Spfg+# "License"); you may not use this file except in compliance 44*cf619909Spfg+# with the License. You may obtain a copy of the License at 45*cf619909Spfg+# 46*cf619909Spfg+# http://www.apache.org/licenses/LICENSE-2.0 47*cf619909Spfg+# 48*cf619909Spfg+# Unless required by applicable law or agreed to in writing, 49*cf619909Spfg+# software distributed under the License is distributed on an 50*cf619909Spfg+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 51*cf619909Spfg+# KIND, either express or implied. See the License for the 52*cf619909Spfg+# specific language governing permissions and limitations 53*cf619909Spfg+# under the License. 54*cf619909Spfg+# 55*cf619909Spfg+#************************************************************** 56*cf619909Spfg+ 57*cf619909Spfg+PRJ=..$/..$/..$/.. 58*cf619909Spfg+PRJNAME=ooo_beanshell 59*cf619909Spfg+TARGET=jarall 60*cf619909Spfg+ 61*cf619909Spfg+.INCLUDE : ant.mk 62*cf619909Spfg+ 63*cf619909Spfg+ALLTAR : ANTBUILD 64*cf619909Spfg+ 65